[PR #266] [MERGED] Fix backup not resuming after closed and reopen #8535

Closed
opened 2026-02-05 13:48:58 +03:00 by OVERLORD · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/immich-app/immich/pull/266
Author: @alextran1502
Created: 6/25/2022
Status: Merged
Merged: 6/25/2022
Merged by: @alextran1502

Base: mainHead: fix-backup-not-resuming-after-closed-and-reopen


📝 Commits (5)

  • a273d8c Fixed app not resuming backup after closing and reopening the app
  • a666fb4 Fixed cosmetic effect of backup button doesn't change state right away after pressing start backup
  • c4f9f0c Fixed grammar
  • 02693cd Fixed deep copy problem that cause incorrect asset count when backing up
  • e717245 Format code

📊 Changes

63 files changed (+677 additions, -300 deletions)

View changed files

📝 mobile/lib/modules/asset_viewer/models/image_viewer_page_state.model.dart (+8 -4)
📝 mobile/lib/modules/asset_viewer/providers/image_viewer_page_state.provider.dart (+5 -2)
📝 mobile/lib/modules/asset_viewer/services/image_viewer.service.dart (+5 -3)
📝 mobile/lib/modules/backup/models/available_album.model.dart (+5 -2)
📝 mobile/lib/modules/backup/models/backup_state.model.dart (+8 -7)
📝 mobile/lib/modules/backup/models/hive_backup_albums.model.dart (+4 -2)
📝 mobile/lib/modules/backup/providers/backup.provider.dart (+23 -20)
📝 mobile/lib/modules/backup/ui/album_info_card.dart (+41 -17)
📝 mobile/lib/modules/backup/ui/backup_info_card.dart (+6 -1)
📝 mobile/lib/modules/backup/views/album_preview_page.dart (+9 -4)
📝 mobile/lib/modules/backup/views/backup_album_selection_page.dart (+39 -13)
📝 mobile/lib/modules/backup/views/backup_controller_page.dart (+13 -13)
📝 mobile/lib/modules/home/models/delete_asset_response.model.dart (+5 -2)
📝 mobile/lib/modules/home/models/get_all_asset_response.model.dart (+13 -6)
📝 mobile/lib/modules/home/models/home_page_state.model.dart (+8 -3)
📝 mobile/lib/modules/home/providers/home_page_state.provider.dart (+8 -4)
📝 mobile/lib/modules/home/ui/control_bottom_app_bar.dart (+7 -2)
📝 mobile/lib/modules/home/ui/daily_title_text.dart (+35 -13)
📝 mobile/lib/modules/home/ui/delete_diaglog.dart (+5 -2)
📝 mobile/lib/modules/home/ui/image_grid.dart (+4 -1)

...and 43 more files

📄 Description

Fixed problem with backing up process does not auto-start despite enabling auto backup when reopening the app after closing.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/immich-app/immich/pull/266 **Author:** [@alextran1502](https://github.com/alextran1502) **Created:** 6/25/2022 **Status:** ✅ Merged **Merged:** 6/25/2022 **Merged by:** [@alextran1502](https://github.com/alextran1502) **Base:** `main` ← **Head:** `fix-backup-not-resuming-after-closed-and-reopen` --- ### 📝 Commits (5) - [`a273d8c`](https://github.com/immich-app/immich/commit/a273d8cbde4bbcf2794bed928c643d66e8735dc5) Fixed app not resuming backup after closing and reopening the app - [`a666fb4`](https://github.com/immich-app/immich/commit/a666fb46f9b81e8f4d6dd8aaa3420d534cd1b41e) Fixed cosmetic effect of backup button doesn't change state right away after pressing start backup - [`c4f9f0c`](https://github.com/immich-app/immich/commit/c4f9f0c955fbc103ed4c05aab17ba779d6d2da92) Fixed grammar - [`02693cd`](https://github.com/immich-app/immich/commit/02693cd1b194c4b77d0efffd9052e5ca44f1c14e) Fixed deep copy problem that cause incorrect asset count when backing up - [`e717245`](https://github.com/immich-app/immich/commit/e717245d0aa8d802b9805b25898da82b4ed96272) Format code ### 📊 Changes **63 files changed** (+677 additions, -300 deletions) <details> <summary>View changed files</summary> 📝 `mobile/lib/modules/asset_viewer/models/image_viewer_page_state.model.dart` (+8 -4) 📝 `mobile/lib/modules/asset_viewer/providers/image_viewer_page_state.provider.dart` (+5 -2) 📝 `mobile/lib/modules/asset_viewer/services/image_viewer.service.dart` (+5 -3) 📝 `mobile/lib/modules/backup/models/available_album.model.dart` (+5 -2) 📝 `mobile/lib/modules/backup/models/backup_state.model.dart` (+8 -7) 📝 `mobile/lib/modules/backup/models/hive_backup_albums.model.dart` (+4 -2) 📝 `mobile/lib/modules/backup/providers/backup.provider.dart` (+23 -20) 📝 `mobile/lib/modules/backup/ui/album_info_card.dart` (+41 -17) 📝 `mobile/lib/modules/backup/ui/backup_info_card.dart` (+6 -1) 📝 `mobile/lib/modules/backup/views/album_preview_page.dart` (+9 -4) 📝 `mobile/lib/modules/backup/views/backup_album_selection_page.dart` (+39 -13) 📝 `mobile/lib/modules/backup/views/backup_controller_page.dart` (+13 -13) 📝 `mobile/lib/modules/home/models/delete_asset_response.model.dart` (+5 -2) 📝 `mobile/lib/modules/home/models/get_all_asset_response.model.dart` (+13 -6) 📝 `mobile/lib/modules/home/models/home_page_state.model.dart` (+8 -3) 📝 `mobile/lib/modules/home/providers/home_page_state.provider.dart` (+8 -4) 📝 `mobile/lib/modules/home/ui/control_bottom_app_bar.dart` (+7 -2) 📝 `mobile/lib/modules/home/ui/daily_title_text.dart` (+35 -13) 📝 `mobile/lib/modules/home/ui/delete_diaglog.dart` (+5 -2) 📝 `mobile/lib/modules/home/ui/image_grid.dart` (+4 -1) _...and 43 more files_ </details> ### 📄 Description Fixed problem with backing up process does not auto-start despite enabling auto backup when reopening the app after closing. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
OVERLORD added the pull-request label 2026-02-05 13:48:58 +03:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: immich-app/immich#8535