pstream is dead; long live pstream taciturnaxolotl.github.io/pstream-ng/
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

restore manual source selection in auth

Pas 243314b1 da67d857

+9
+8
src/hooks/auth/useAuthData.ts
··· 68 68 const setEnableDoubleClickToSeek = usePreferencesStore( 69 69 (s) => s.setEnableDoubleClickToSeek, 70 70 ); 71 + const setManualSourceSelection = usePreferencesStore( 72 + (s) => s.setManualSourceSelection, 73 + ); 71 74 72 75 const login = useCallback( 73 76 async ( ··· 196 199 setEnableHoldToBoost(settings.enableHoldToBoost); 197 200 } 198 201 202 + if (settings.manualSourceSelection !== undefined) { 203 + setManualSourceSelection(settings.manualSourceSelection); 204 + } 205 + 199 206 if (settings.enableDoubleClickToSeek !== undefined) { 200 207 setEnableDoubleClickToSeek(settings.enableDoubleClickToSeek); 201 208 } ··· 222 229 setEnableLowPerformanceMode, 223 230 setEnableNativeSubtitles, 224 231 setEnableHoldToBoost, 232 + setManualSourceSelection, 225 233 setEnableDoubleClickToSeek, 226 234 ], 227 235 );
+1
src/pages/parts/auth/VerifyPassphrasePart.tsx
··· 57 57 enableLowPerformanceMode: store.enableLowPerformanceMode, 58 58 enableNativeSubtitles: store.enableNativeSubtitles, 59 59 enableDoubleClickToSeek: store.enableDoubleClickToSeek, 60 + manualSourceSelection: store.manualSourceSelection, 60 61 })); 61 62 62 63 const backendUrl = useBackendUrl();