This commit is contained in:
2024-01-18 22:47:29 +00:00
parent aa9d5d72be
commit 0307bacd30
2 changed files with 8 additions and 8 deletions

View File

@ -81,9 +81,7 @@ export class ProfileCacheRelayWorker extends EventEmitter<CacheEvents> implement
this.emit("change", mapped);
}
async update<TWithCreated extends CachedMetadata & { created: number; loaded: number }>(
m: TWithCreated,
): Promise<"new" | "refresh" | "updated" | "no_change"> {
async update(): Promise<"new" | "refresh" | "updated" | "no_change"> {
// do nothing
return "refresh";
}