diff options
| author | Cody Robibero <cody@robibe.ro> | 2023-06-29 05:44:36 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-06-29 05:44:36 -0600 |
| commit | b5bbb98175e0542d43c01f80c15e8dce04e58b53 (patch) | |
| tree | cd2af363318415710fa97fa5be42075046bcadbc /MediaBrowser.Controller/Net/WebSocketMessages/Outbound/ServerShuttingDownMessage.cs | |
| parent | 76939bbd9bebb622759422f262c2490b56ab5a16 (diff) | |
Fix Websocket OpenApi (#9935)
* Further split inbound and outbound messages
* Fix datatype for inbound start messages
* fixes from review
Diffstat (limited to 'MediaBrowser.Controller/Net/WebSocketMessages/Outbound/ServerShuttingDownMessage.cs')
| -rw-r--r-- | MediaBrowser.Controller/Net/WebSocketMessages/Outbound/ServerShuttingDownMessage.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Net/WebSocketMessages/Outbound/ServerShuttingDownMessage.cs b/MediaBrowser.Controller/Net/WebSocketMessages/Outbound/ServerShuttingDownMessage.cs index 0b998a523..485e71b6e 100644 --- a/MediaBrowser.Controller/Net/WebSocketMessages/Outbound/ServerShuttingDownMessage.cs +++ b/MediaBrowser.Controller/Net/WebSocketMessages/Outbound/ServerShuttingDownMessage.cs @@ -6,7 +6,7 @@ namespace MediaBrowser.Controller.Net.WebSocketMessages.Outbound; /// <summary> /// Server shutting down message. /// </summary> -public class ServerShuttingDownMessage : WebSocketMessage, IOutboundWebSocketMessage +public class ServerShuttingDownMessage : OutboundWebSocketMessage { /// <inheritdoc /> [DefaultValue(SessionMessageType.ServerShuttingDown)] |
