diff options
| author | zyoshoka <107108195+zyoshoka@users.noreply.github.com> | 2023-11-26 10:02:22 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-11-26 10:02:22 +0900 |
| commit | 7a494b2aa7e0337a220b8988122839e9a7b75538 (patch) | |
| tree | 75444954c0ed084ae57e75af66ac819660b30769 /packages/backend/src/core/UserFollowingService.ts | |
| parent | fix(backend): 何もノートしていないユーザーのフィードにア... (diff) | |
| download | sharkey-7a494b2aa7e0337a220b8988122839e9a7b75538.tar.gz sharkey-7a494b2aa7e0337a220b8988122839e9a7b75538.tar.bz2 sharkey-7a494b2aa7e0337a220b8988122839e9a7b75538.zip | |
fix(backend): rename FunoutTimelineService to FanoutTimelineService (#12453)
Diffstat (limited to 'packages/backend/src/core/UserFollowingService.ts')
| -rw-r--r-- | packages/backend/src/core/UserFollowingService.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/backend/src/core/UserFollowingService.ts b/packages/backend/src/core/UserFollowingService.ts index bd7f298021..3062999c08 100644 --- a/packages/backend/src/core/UserFollowingService.ts +++ b/packages/backend/src/core/UserFollowingService.ts @@ -29,7 +29,7 @@ import { CacheService } from '@/core/CacheService.js'; import type { Config } from '@/config.js'; import { AccountMoveService } from '@/core/AccountMoveService.js'; import { UtilityService } from '@/core/UtilityService.js'; -import { FunoutTimelineService } from '@/core/FunoutTimelineService.js'; +import { FanoutTimelineService } from '@/core/FanoutTimelineService.js'; import Logger from '../logger.js'; const logger = new Logger('following/create'); @@ -84,7 +84,7 @@ export class UserFollowingService implements OnModuleInit { private webhookService: WebhookService, private apRendererService: ApRendererService, private accountMoveService: AccountMoveService, - private funoutTimelineService: FunoutTimelineService, + private fanoutTimelineService: FanoutTimelineService, private perUserFollowingChart: PerUserFollowingChart, private instanceChart: InstanceChart, ) { @@ -305,7 +305,7 @@ export class UserFollowingService implements OnModuleInit { } }); - this.funoutTimelineService.purge(`homeTimeline:${follower.id}`); + this.fanoutTimelineService.purge(`homeTimeline:${follower.id}`); } // Publish followed event @@ -374,7 +374,7 @@ export class UserFollowingService implements OnModuleInit { } }); - this.funoutTimelineService.purge(`homeTimeline:${follower.id}`); + this.fanoutTimelineService.purge(`homeTimeline:${follower.id}`); } if (this.userEntityService.isLocalUser(follower) && this.userEntityService.isRemoteUser(followee)) { |