We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58d5298 commit 2907037Copy full SHA for 2907037
lib/sessions/network.js
@@ -82,7 +82,8 @@ module.exports = class NetworkSession {
82
this._sessionState.addResource('@network/configuration-' + dkeyString, null, () => {
83
states.delete(this._sessionState)
84
if (!states.size) this._networkStates.delete(dkeyString)
85
- if (!this._networker.closed) reduceAndConfigure(false)
+ // reduceAndConfigure might fail here, but this is a sync cleanup function so the error is unimportant.
86
+ if (!this._networker.closed) reduceAndConfigure(false).catch(() => {})
87
})
88
}
89
0 commit comments