diff options
| author | Hazelnoot <acomputerdog@gmail.com> | 2025-06-01 14:19:39 -0400 |
|---|---|---|
| committer | Hazelnoot <acomputerdog@gmail.com> | 2025-06-01 14:19:39 -0400 |
| commit | 15c45633e5fddf388163f82e33ba0cf7db22ebc5 (patch) | |
| tree | 26170bcf730b92bee9ff76c2bdf6dcc4a08a19e1 /packages/backend/src/core | |
| parent | merge: Instance admin UX improvements (!1059) (diff) | |
| download | sharkey-15c45633e5fddf388163f82e33ba0cf7db22ebc5.tar.gz sharkey-15c45633e5fddf388163f82e33ba0cf7db22ebc5.tar.bz2 sharkey-15c45633e5fddf388163f82e33ba0cf7db22ebc5.zip | |
fix bad merge in UtilityService.ts
Diffstat (limited to 'packages/backend/src/core')
| -rw-r--r-- | packages/backend/src/core/UtilityService.ts | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/packages/backend/src/core/UtilityService.ts b/packages/backend/src/core/UtilityService.ts index d2e1835038..3098367392 100644 --- a/packages/backend/src/core/UtilityService.ts +++ b/packages/backend/src/core/UtilityService.ts @@ -95,15 +95,6 @@ export class UtilityService { } @bindThis - public isBubbledHost(host: string | null): boolean { - if (host == null) return false; - - // TODO remove null conditional after merging lab/persisted-instance-blocks - // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition - return this.meta.bubbleInstances?.includes(host); - } - - @bindThis public concatNoteContentsForKeyWordCheck(content: { cw?: string | null; text?: string | null; |