Update BlueApp.ts

This commit is contained in:
Marcos Rodriguez Velez 2024-04-06 20:59:49 -04:00
parent ff624b3140
commit 7fc24f8f90
No known key found for this signature in database
GPG Key ID: 6030B2F48CCE86D7

View File

@ -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) => {