1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-21 22:05:38 -04:00

Fixed: Support for SignalR's Server Sent Events transport as an alternative to websockets and long polling

This commit is contained in:
Taloth Saldono
2019-05-05 21:51:28 +02:00
parent 5cf2672469
commit 83c09b4540
3 changed files with 10 additions and 4 deletions
+1 -1
View File
@@ -84,7 +84,7 @@ class SignalRConnector extends Component {
constructor(props, context) {
super(props, context);
this.signalRconnectionOptions = { transport: ['webSockets', 'longPolling'] };
this.signalRconnectionOptions = { transport: ['webSockets', 'serverSentEvents', 'longPolling'] };
this.signalRconnection = null;
this.retryInterval = 1;
this.retryTimeoutId = null;