fix: use fibonacci instead of exponential when streaming (#1205)
I dunno if this will improve #14, but it at least aligns us with Mastodon's behavior.
This commit is contained in:
parent
b7b9758445
commit
89a56678e1
|
@ -71,7 +71,7 @@ export class TimelineStream {
|
|||
|
||||
_setupWebSocket () {
|
||||
const url = getUrl(this._streamingApi, this._accessToken, this._timeline)
|
||||
const ws = new WebSocketClient(url, null, { backoff: 'exponential' })
|
||||
const ws = new WebSocketClient(url, null, { backoff: 'fibonacci' })
|
||||
|
||||
ws.onopen = this._opts.onOpen || noop
|
||||
ws.onmessage = this._opts.onMessage ? e => this._opts.onMessage(JSON.parse(e.data)) : noop
|
||||
|
|
Loading…
Reference in a new issue