mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-06 13:02:23 -07:00
Fixed: Multiple SignalR Improvements
Support for serverSentEvents, connection optimizations Co-Authored-By: taloth <taloth@users.noreply.github.com>
This commit is contained in:
parent
184ab745ae
commit
3ebbf6ff83
5 changed files with 53 additions and 7 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue