diff --git a/src/app/modules/auth/factories/storage.factory.ts b/src/app/modules/auth/factories/storage.factory.ts index 4cf2edf6..5e2efbba 100644 --- a/src/app/modules/auth/factories/storage.factory.ts +++ b/src/app/modules/auth/factories/storage.factory.ts @@ -1,9 +1,9 @@ import {Platform} from '@ionic/angular'; -import {CapacitorSecureStorage} from 'ionic-appauth/lib/capacitor'; import {IonicStorage} from 'ionic-appauth/lib'; +import {SafeCapacitorSecureStorage} from '../../storage/capacitor-secure-storage'; export const storageFactory = (platform: Platform) => { return platform.is('capacitor') - ? new CapacitorSecureStorage() + ? new SafeCapacitorSecureStorage() : new IonicStorage(); }; diff --git a/src/app/modules/storage/capacitor-secure-storage.ts b/src/app/modules/storage/capacitor-secure-storage.ts new file mode 100644 index 00000000..8db8a3dd --- /dev/null +++ b/src/app/modules/storage/capacitor-secure-storage.ts @@ -0,0 +1,30 @@ +/* + * Copyright (C) 2022 StApps + * This program is free software: you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the Free + * Software Foundation, version 3. + * + * This program is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + * more details. + * + * You should have received a copy of the GNU General Public License along with + * this program. If not, see . + */ +import {CapacitorSecureStorage} from 'ionic-appauth/lib/capacitor'; + +/* + * Removes an item from storage before entering the new one to avoid issues + * after iOS upgrade (iOS 16) + */ +export class SafeCapacitorSecureStorage extends CapacitorSecureStorage { + async setItem(name: string, value: string): Promise { + if (!Storage) throw new Error('Capacitor Storage Is Undefined!'); + + try { + await super.removeItem(name); + } catch {} + return super.setItem(name, value); + } +}