1
0
mirror of https://e.coding.net/circlecloud/MiaoBoard.git synced 2024-11-25 02:19:07 +00:00

fix: 修复后缀处理错误的问题

Signed-off-by: 502647092 <admin@yumc.pw>
This commit is contained in:
502647092 2017-01-06 22:16:52 +08:00
parent 2a05ee1b41
commit ab424ee25f

View File

@ -63,6 +63,8 @@ public class SiderbarBoardPage extends BoardPage {
} }
suffix = StrKit.substring(sufpre + suffix, 0, 16); suffix = StrKit.substring(sufpre + suffix, 0, 16);
boardLine.getTeam().setSuffix(suffix);//"设置后16个字符" boardLine.getTeam().setSuffix(suffix);//"设置后16个字符"
} else {
boardLine.getTeam().setSuffix("");//"清理后16个字符"
} }
maxLine = line + 1; maxLine = line + 1;
} }