fix lint error in MetaService

This commit is contained in:
Hazelnoot 2025-05-24 23:12:52 -04:00
parent abac2f785a
commit fad82000f0

View file

@ -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();
}
}