This commit is contained in:
osamu 2023-10-26 08:28:18 +09:00
parent 4d3cace0f5
commit d0527d9648
1 changed files with 2 additions and 2 deletions

View File

@ -198,11 +198,11 @@ export class CacheService implements OnApplicationShutdown {
break;
}
case 'followChannel': {
this.userFollowingChannelsCache.refresh(body.userId)
this.userFollowingChannelsCache.refresh(body.userId);
break;
}
case 'unfollowChannel': {
this.userFollowingChannelsCache.delete(body.userId)
this.userFollowingChannelsCache.delete(body.userId);
break;
}
default: