Merge remote-tracking branch 'origin/main' into lighter_buckets_web

This commit is contained in:
Min Idzelis
2025-04-29 01:35:20 +00:00
294 changed files with 5446 additions and 1625 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
import { getKey } from '$lib/utils';
import { authManager } from '$lib/managers/auth-manager.svelte';
import { type AssetGridRouteSearchParams } from '$lib/utils/navigation';
import { getAssetInfo, type AssetResponseDto } from '@immich/sdk';
import { readonly, writable } from 'svelte/store';
@@ -16,7 +16,7 @@ function createAssetViewingStore() {
};
const setAssetId = async (id: string): Promise<AssetResponseDto> => {
const asset = await getAssetInfo({ id, key: getKey() });
const asset = await getAssetInfo({ id, key: authManager.key });
setAsset(asset);
return asset;
};