[PR #595] [CLOSED] fix(server, web, mobile): uploading on the web/mobile app #8684

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

📋 Pull Request Information

Original PR: https://github.com/immich-app/immich/pull/595
Author: @panoti
Created: 9/6/2022
Status: Closed

Base: mainHead: refactor/remove-old-duplication-method


📝 Commits (10+)

  • b309151 refactor(server): make deviceAssetId optional
  • 1e9220f refactor(web): remove deviceAssetId on the web app
  • dc646f1 refactor(web): file id
  • 75e106c Merge branch 'upstream' into refactor/remove-old-duplication-method
  • f26e264 chore(server): remove depredication
  • 5b9e633 feat(mobile): add backup asets hive box
  • 3127cd6 chore(mobile): add backup assets adapter
  • dc5e0a6 feat(mobile): add asset box
  • 025fa3e chore(web,server): rollback
  • 9e45563 chore(server): update comment

📊 Changes

10 files changed (+173 additions, -62 deletions)

View changed files

📝 mobile/lib/constants/hive_box.dart (+3 -0)
📝 mobile/lib/main.dart (+3 -0)
📝 mobile/lib/modules/backup/background_service/background.service.dart (+3 -0)
mobile/lib/modules/backup/models/hive_backup_asset.model.dart (+13 -0)
mobile/lib/modules/backup/models/hive_backup_asset.model.g.dart (+41 -0)
📝 mobile/lib/modules/backup/providers/backup.provider.dart (+3 -1)
📝 mobile/lib/modules/backup/services/backup.service.dart (+27 -9)
📝 mobile/lib/shared/providers/asset.provider.dart (+6 -0)
📝 server/libs/database/src/entities/asset.entity.ts (+2 -0)
📝 web/src/lib/utils/file-uploader.ts (+72 -52)

📄 Description

In this PR, I will

  • fix uploading the mobile app (support duplicate asset)
  • improve web uploader (increase limit of upload up to 200)

🔄 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/595 **Author:** [@panoti](https://github.com/panoti) **Created:** 9/6/2022 **Status:** ❌ Closed **Base:** `main` ← **Head:** `refactor/remove-old-duplication-method` --- ### 📝 Commits (10+) - [`b309151`](https://github.com/immich-app/immich/commit/b3091512d60781777b240bf34599ff179dce528f) refactor(server): make deviceAssetId optional - [`1e9220f`](https://github.com/immich-app/immich/commit/1e9220f4e11e556253000aeed577989d1523346e) refactor(web): remove deviceAssetId on the web app - [`dc646f1`](https://github.com/immich-app/immich/commit/dc646f1cd56a7d7efc373c1c9cea3226ebac81c1) refactor(web): file id - [`75e106c`](https://github.com/immich-app/immich/commit/75e106c7b8b179c9e20b70cd609ce042656ddab0) Merge branch 'upstream' into refactor/remove-old-duplication-method - [`f26e264`](https://github.com/immich-app/immich/commit/f26e26497ef4d4d90e99ac2e5df8ee7a3e9ab0be) chore(server): remove depredication - [`5b9e633`](https://github.com/immich-app/immich/commit/5b9e633e65da99bff5651ea431c139b82076aed3) feat(mobile): add backup asets hive box - [`3127cd6`](https://github.com/immich-app/immich/commit/3127cd6d9bed2a3cbf905ac69d248b3e32d289be) chore(mobile): add backup assets adapter - [`dc5e0a6`](https://github.com/immich-app/immich/commit/dc5e0a6a4848a44cb64877bf1d070e5d93633dbb) feat(mobile): add asset box - [`025fa3e`](https://github.com/immich-app/immich/commit/025fa3e0ddd3f7cd17144b08b0b905dd9140508d) chore(web,server): rollback - [`9e45563`](https://github.com/immich-app/immich/commit/9e45563671385673779970454a0da3e1d5fb9a44) chore(server): update comment ### 📊 Changes **10 files changed** (+173 additions, -62 deletions) <details> <summary>View changed files</summary> 📝 `mobile/lib/constants/hive_box.dart` (+3 -0) 📝 `mobile/lib/main.dart` (+3 -0) 📝 `mobile/lib/modules/backup/background_service/background.service.dart` (+3 -0) ➕ `mobile/lib/modules/backup/models/hive_backup_asset.model.dart` (+13 -0) ➕ `mobile/lib/modules/backup/models/hive_backup_asset.model.g.dart` (+41 -0) 📝 `mobile/lib/modules/backup/providers/backup.provider.dart` (+3 -1) 📝 `mobile/lib/modules/backup/services/backup.service.dart` (+27 -9) 📝 `mobile/lib/shared/providers/asset.provider.dart` (+6 -0) 📝 `server/libs/database/src/entities/asset.entity.ts` (+2 -0) 📝 `web/src/lib/utils/file-uploader.ts` (+72 -52) </details> ### 📄 Description In this PR, I will - [x] fix uploading the mobile app (support duplicate asset) - [x] improve web uploader (increase limit of upload up to 200) --- <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:51:29 +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#8684