Fixed activeTab

This commit is contained in:
Mr. Stallion 2023-03-14 17:32:05 -07:00
parent 21ff1d25b9
commit ca8bdef9e0
1 changed files with 2 additions and 2 deletions

View File

@ -62,7 +62,7 @@ export class CacheManager {
protected fetchLog: Record<string, number> = {};
protected ongoingLog: Record<string, true> = {};
protected isActiveTab = false;
protected isActiveTab = true;
setTabActive(isActive: boolean): void {
this.isActiveTab = isActive;
@ -87,7 +87,7 @@ export class CacheManager {
return;
}
log.debug('profile.cache.queue', { name, skipCacheCheck, channelId });
log.debug('profile.cache.queue', { name, skipCacheCheck, channelId, from: core.characters.ownCharacter.name });
if (!skipCacheCheck) {
const c = await this.profileCache.get(name);