diff --git a/BlueApp.ts b/BlueApp.ts index 0f221bb93..f12fcd71b 100644 --- a/BlueApp.ts +++ b/BlueApp.ts @@ -871,7 +871,7 @@ export class AppStorage { } } catch (_) {} const doNotTrackValue = await DefaultPreference.get(AppStorage.DO_NOT_TRACK); - return doNotTrackValue === '1' ?? false ; + return doNotTrackValue === '1' || false; }; setDoNotTrack = async (value: boolean) => {