Skip to content
This repository has been archived by the owner on Aug 21, 2024. It is now read-only.

Commit

Permalink
Probably that's a fix for #2
Browse files Browse the repository at this point in the history
  • Loading branch information
Rabtsevich Nikita committed Nov 25, 2023
1 parent 7e68ee9 commit c3daa6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/UserManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ export default class UserManager extends CachedManager<User>{
}

public async forceStorageUpdate(unifiedId: UnifiedIdString, transaction?: Transaction) {
let user = await this.get(unifiedId);
let user = await this.cacheStorage.get<User>(unifiedId);
if(!user) return;

let t = transaction;
Expand Down

0 comments on commit c3daa6c

Please sign in to comment.