fix: cache by userid

This commit is contained in:
Julien Froidefond
2025-02-24 13:54:55 +01:00
parent 206418aa57
commit c3b11a9090
4 changed files with 34 additions and 15 deletions

View File

@@ -136,6 +136,6 @@ export class LibraryService extends BaseApiService {
static async invalidateLibrarySeriesCache(libraryId: string): Promise<void> {
const cacheService = await getServerCacheService();
cacheService.delete(`library-${libraryId}-all-series`);
await cacheService.delete(`library-${libraryId}-all-series`);
}
}