Details
-
Bug
-
Status: Closed
-
Normal
-
Resolution: Fixed
-
None
-
None
-
None
-
Tiger Sprint 137
Description
I cannot delete channel "Tobi" but I can delete channel "Canh".
The cause of this unexpected behavior is that we're using StringUtils.stripEnd(channelName, "-preview"), which considers the "-preview" string a collection of characters to be stripped off the end of the channel name. Instead, we should be using StringUtils.removeEnd(channelName, "-preview").