mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-12-30 00:36:14 -06:00
don't use bun.Ident where not needed
This commit is contained in:
parent
44ee9421a0
commit
fc9f99666e
1 changed files with 1 additions and 3 deletions
|
|
@ -45,9 +45,7 @@ func init() {
|
||||||
).
|
).
|
||||||
Where("? NOT LIKE concat(?, ?, ?)",
|
Where("? NOT LIKE concat(?, ?, ?)",
|
||||||
bun.Ident("status.edits"),
|
bun.Ident("status.edits"),
|
||||||
bun.Ident("%"),
|
"%", bun.Ident("status_edit.id"), "%",
|
||||||
bun.Ident("status_edit.id"),
|
|
||||||
bun.Ident("%"),
|
|
||||||
).
|
).
|
||||||
Scan(ctx, &edits); err != nil {
|
Scan(ctx, &edits); err != nil {
|
||||||
return err
|
return err
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue