fix: refresh has changed cache key

This commit is contained in:
Julien Froidefond
2025-02-23 10:54:39 +01:00
parent fd2632c394
commit 0bbb5e1aaa
3 changed files with 3 additions and 3 deletions

View File

@@ -126,7 +126,7 @@ export class SeriesService extends BaseApiService {
}
static async clearSeriesBooksCache(seriesId: string) {
serverCacheService.deleteAll(`series-${seriesId}-books`);
serverCacheService.delete(`series-${seriesId}-all-books`);
}
static async getFirstBook(seriesId: string): Promise<string> {