mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-22 22:14:44 -04:00
Fixed: Multiple SignalR Improvements
Support for serverSentEvents, connection optimizations Co-Authored-By: taloth <taloth@users.noreply.github.com>
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user