Skip to content

Commit dff0e7b

Browse files
alextran1502savely-krasovsky
authored andcommitted
fix(web): don't show newly uploaded asset in inapplicable views (immich-app#17184)
1 parent a72f8c2 commit dff0e7b

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

web/src/lib/stores/assets-store.svelte.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -567,6 +567,9 @@ export class AssetStore {
567567
initTask = new CancellableTask(
568568
() => {
569569
this.isInitialized = true;
570+
if (this.#options.albumId || this.#options.personId) {
571+
return;
572+
}
570573
this.connect();
571574
},
572575
() => {

0 commit comments

Comments
 (0)