mirror of
https://github.com/immich-app/immich.git
synced 2026-03-03 02:27:01 +00:00
fix: memory generation and display on first load
This commit is contained in:
@@ -248,6 +248,9 @@ export class MediaService extends BaseService {
|
||||
await this.assetRepository.update({ id: asset.id, thumbhash });
|
||||
}
|
||||
|
||||
const now = new Date();
|
||||
await this.assetRepository.upsertJobStatus({ assetId: asset.id, previewAt: now, thumbnailAt: now });
|
||||
|
||||
return JobStatus.Success;
|
||||
}
|
||||
|
||||
|
||||
@@ -1,10 +1,11 @@
|
||||
import { memoryStore } from '$lib/stores/memory.store.svelte';
|
||||
import { authenticate } from '$lib/utils/auth';
|
||||
import { getFormatter } from '$lib/utils/i18n';
|
||||
import type { PageLoad } from './$types';
|
||||
|
||||
export const load = (async ({ url }) => {
|
||||
await authenticate(url);
|
||||
const $t = await getFormatter();
|
||||
const [$t] = await Promise.all([getFormatter(), memoryStore.ready()]);
|
||||
|
||||
return {
|
||||
meta: {
|
||||
|
||||
Reference in New Issue
Block a user