feat: widen ScreenShareConfig types, bump persist to v12

This commit is contained in:
Jannis Braun
2026-03-21 23:22:49 +01:00
parent ec71dd2c50
commit a02b098fa7
+10 -3
View File
@@ -7,8 +7,8 @@ import { useAuthStore } from './authStore';
import { isElectron } from '../platform/platform';
export interface ScreenShareConfig {
height: 1080 | 720 | 540;
fps: 60 | 45 | 30;
height: number | 'native';
fps: number;
mode: 'gaming' | 'text';
customBitrateKbps: number | null;
shareAudio: boolean;
@@ -526,7 +526,7 @@ export const useVoiceStore = create<VoiceState>()(
}),
{
name: 'backspace-voice-settings',
version: 11,
version: 12,
migrate: (persistedState: any, version: number) => {
if (version === 0) {
persistedState.streamAttenuationEnabled = false;
@@ -575,6 +575,13 @@ export const useVoiceStore = create<VoiceState>()(
persistedState.screenShareConfig.shareAudio = !isElectron();
}
}
if (version < 12) {
// Validate screenShareConfig.height after type widening
const cfg = persistedState.screenShareConfig;
if (cfg && typeof cfg.height !== 'number' && cfg.height !== 'native') {
cfg.height = 1080;
}
}
return persistedState;
},
storage: createJSONStorage(() => localStorage),