Fix being unable to set chat bot channel limits.

Fixes #967
This commit is contained in:
Jordan Brown
2020-05-08 03:16:22 -04:00
parent 6492d78f9c
commit dbe626f83d
@@ -264,6 +264,7 @@ namespace Tgstation.Server.Host.Controllers
|| CheckModified(x => x.Name, ChatBotRights.WriteName)
|| CheckModified(x => x.Provider, ChatBotRights.WriteProvider)
|| CheckModified(x => x.ReconnectionInterval, ChatBotRights.WriteReconnectionInterval)
|| CheckModified(x => x.ChannelLimit, ChatBotRights.WriteChannelLimit)
|| (model.Channels != null && !userRights.HasFlag(ChatBotRights.WriteChannels)))
return Forbid();