mirror of
https://github.com/immich-app/immich
synced 2025-11-14 17:36:12 +00:00
chore: follow up on auth refactoring (#14367)
* chore: follow up on auth refactoring * remove async
This commit is contained in:
parent
21f14be949
commit
b4c96a09fb
2 changed files with 11 additions and 7 deletions
|
|
@ -17,12 +17,14 @@ class AuthRepository extends DatabaseRepository implements IAuthRepository {
|
|||
|
||||
@override
|
||||
Future<void> clearLocalData() {
|
||||
return db.writeTxn(() async {
|
||||
await db.assets.clear();
|
||||
await db.exifInfos.clear();
|
||||
await db.albums.clear();
|
||||
await db.eTags.clear();
|
||||
await db.users.clear();
|
||||
return db.writeTxn(() {
|
||||
return Future.wait([
|
||||
db.assets.clear(),
|
||||
db.exifInfos.clear(),
|
||||
db.albums.clear(),
|
||||
db.eTags.clear(),
|
||||
db.users.clear(),
|
||||
]);
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue