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 (#15560)
This commit is contained in:
parent
aaea5cf1ad
commit
6c95eb22b7
1 changed files with 8 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue