mirror of
https://github.com/tgstation/tgstation-server.git
synced 2026-08-30 16:39:21 +01:00
Fix chat channel tags not getting set in and out of the API
This commit is contained in:
@@ -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
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user