mirror of
https://github.com/fluxerapp/fluxer.git
synced 2026-09-03 05:10:25 +03:00
fix(voice): log local voice state hydration failures (#2386)
This commit is contained in:
@@ -128,7 +128,9 @@ class LocalVoiceState implements LocalVoiceConnectionState {
|
||||
{autoBind: true},
|
||||
);
|
||||
this._disposers = [];
|
||||
this.persistenceHydrationPromise = this.initPersistence();
|
||||
this.persistenceHydrationPromise = this.initPersistence().catch((error) => {
|
||||
logger.error('Failed to hydrate LocalVoiceState from persistence', error);
|
||||
});
|
||||
this.initializePersistedDefaultSync();
|
||||
this.initializePermissionSync();
|
||||
this.initializeDevicePermissionSync();
|
||||
|
||||
Reference in New Issue
Block a user