diff --git a/messaging/service/channel.go b/messaging/service/channel.go index 735e5c560..625972585 100644 --- a/messaging/service/channel.go +++ b/messaging/service/channel.go @@ -223,10 +223,6 @@ func (svc *channel) Create(in *types.Channel) (out *types.Channel, err error) { } } - if in.Topic != "" && false { - return errors.New("Not allowed to set channel topic") - } - if in.Type == types.ChannelTypePublic && !svc.prm.CanCreatePublicChannel() { return errors.New("Not allowed to create public channels") }