1
0
Fork 0
mirror of https://github.com/immich-app/immich.git synced 2025-04-04 15:16:24 +02:00

fix(mobile): full refresh doesn't get albums ()

This commit is contained in:
Alex 2025-01-24 11:27:33 -06:00 committed by GitHub
parent aaea5cf1ad
commit 6c95eb22b7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -83,11 +83,18 @@ class PhotosPage extends HookConsumerWidget {
Future<void> refreshAssets() async {
final fullRefresh = refreshCount.value > 0;
await ref.read(assetProvider.notifier).getAllAsset(clear: fullRefresh);
if (fullRefresh) {
Future.wait([
ref.read(assetProvider.notifier).getAllAsset(clear: true),
ref.read(albumProvider.notifier).refreshRemoteAlbums(),
]);
// refresh was forced: user requested another refresh within 2 seconds
refreshCount.value = 0;
} else {
await ref.read(assetProvider.notifier).getAllAsset(clear: false);
refreshCount.value++;
// set counter back to 0 if user does not request refresh again
Timer(const Duration(seconds: 4), () => refreshCount.value = 0);