Fixed image cache initialisation

canary
WolverinDEV 2020-12-08 14:42:41 +01:00
parent e6f19e9b17
commit c144af0879
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ export class ImageCache {
public static async load(cacheName: string) : Promise<ImageCache> {
const cache = new ImageCache(cacheName);
await cache.initialize();
return cache;
}