mirror of
https://github.com/TeamPiped/Piped-Backend.git
synced 2024-08-14 23:51:41 +00:00
Merge pull request #614 from TeamPiped/channel-length-fix
Fix another potential mismatch where the channel name can update from.
This commit is contained in:
commit
a045a10bc9
1 changed files with 1 additions and 1 deletions
|
@ -93,7 +93,7 @@ public class ChannelHandlers {
|
|||
|
||||
if (channel != null) {
|
||||
|
||||
ChannelHelpers.updateChannel(s, channel, info.getName(), info.getAvatarUrl(), info.isVerified());
|
||||
ChannelHelpers.updateChannel(s, channel, StringUtils.abbreviate(info.getName(), 100), info.getAvatarUrl(), info.isVerified());
|
||||
|
||||
Set<String> ids = tabInfo.getRelatedItems()
|
||||
.stream()
|
||||
|
|
Loading…
Reference in a new issue