summaryrefslogtreecommitdiff
path: root/packages/backend/src/core/MetaService.ts
diff options
context:
space:
mode:
authorHazelnoot <acomputerdog@gmail.com>2025-05-24 23:12:52 -0400
committerHazelnoot <acomputerdog@gmail.com>2025-05-28 21:31:40 -0400
commitfad82000f09ec4a9843e5ffb14924ab1288f2e0c (patch)
tree84ea39f745c405d422fd11f54f07b8b563f05a4e /packages/backend/src/core/MetaService.ts
parentfix QueryService.generateMutedUserRenotesQueryForNotes to properly exclude qu... (diff)
downloadsharkey-fad82000f09ec4a9843e5ffb14924ab1288f2e0c.tar.gz
sharkey-fad82000f09ec4a9843e5ffb14924ab1288f2e0c.tar.bz2
sharkey-fad82000f09ec4a9843e5ffb14924ab1288f2e0c.zip
fix lint error in MetaService
Diffstat (limited to 'packages/backend/src/core/MetaService.ts')
-rw-r--r--packages/backend/src/core/MetaService.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/backend/src/core/MetaService.ts b/packages/backend/src/core/MetaService.ts
index 16be22ac19..5b6ee8920e 100644
--- a/packages/backend/src/core/MetaService.ts
+++ b/packages/backend/src/core/MetaService.ts
@@ -202,7 +202,7 @@ export class MetaService implements OnApplicationShutdown {
.createQueryBuilder(MiInstance, 'instance')
.update()
.set({ [field]: value })
- .where('(lower(reverse("host")) || \'.\') LIKE ANY (:patterns)', {patterns})
+ .where('(lower(reverse("host")) || \'.\') LIKE ANY (:patterns)', { patterns })
.execute();
}
}