summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHazelnoot <acomputerdog@gmail.com>2025-06-01 14:19:39 -0400
committerHazelnoot <acomputerdog@gmail.com>2025-06-01 14:19:39 -0400
commit15c45633e5fddf388163f82e33ba0cf7db22ebc5 (patch)
tree26170bcf730b92bee9ff76c2bdf6dcc4a08a19e1
parentmerge: Instance admin UX improvements (!1059) (diff)
downloadsharkey-15c45633e5fddf388163f82e33ba0cf7db22ebc5.tar.gz
sharkey-15c45633e5fddf388163f82e33ba0cf7db22ebc5.tar.bz2
sharkey-15c45633e5fddf388163f82e33ba0cf7db22ebc5.zip
fix bad merge in UtilityService.ts
-rw-r--r--packages/backend/src/core/UtilityService.ts9
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;