Fix chat channel tags not getting set in and out of the API

This commit is contained in:
Jordan Brown
2018-09-22 01:01:12 -04:00
parent 5e47168090
commit e5d38a2db9
2 changed files with 4 additions and 2 deletions
@@ -53,7 +53,8 @@ namespace Tgstation.Server.Host.Controllers
IrcChannel = api.IrcChannel,
IsAdminChannel = api.IsAdminChannel ?? false,
IsWatchdogChannel = api.IsWatchdogChannel ?? false,
IsUpdatesChannel = api.IsUpdatesChannel ?? false
IsUpdatesChannel = api.IsUpdatesChannel ?? false,
Tag = api.Tag
};
/// <inheritdoc />
@@ -30,7 +30,8 @@ namespace Tgstation.Server.Host.Models
IsAdminChannel = IsAdminChannel,
IsWatchdogChannel = IsWatchdogChannel,
IsUpdatesChannel = IsUpdatesChannel,
IrcChannel = IrcChannel
IrcChannel = IrcChannel,
Tag = Tag
};
}
}