mirror of
https://github.com/usememos/memos.git
synced 2024-12-26 23:22:47 +08:00
parent
45d4d391d8
commit
bcd8856732
1 changed files with 1 additions and 1 deletions
|
@ -92,7 +92,7 @@ func (d *DB) ListMemos(ctx context.Context, find *store.FindMemo) ([]*store.Memo
|
||||||
}
|
}
|
||||||
if len(v.TagSearch) != 0 {
|
if len(v.TagSearch) != 0 {
|
||||||
for _, tag := range v.TagSearch {
|
for _, tag := range v.TagSearch {
|
||||||
where, args = append(where, "(JSON_CONTAINS(JSON_EXTRACT(`memo`.`payload`, '$.property.tags'), ?) OR JSON_CONTAINS(JSON_EXTRACT(`memo`.`payload`, '$.property.tags'), ?))"), append(args, fmt.Sprintf(`"%s"`, tag), fmt.Sprintf(`"%s/`, tag))
|
where, args = append(where, "(JSON_CONTAINS(JSON_EXTRACT(`memo`.`payload`, '$.property.tags'), ?) OR JSON_CONTAINS(JSON_EXTRACT(`memo`.`payload`, '$.property.tags'), ?))"), append(args, fmt.Sprintf(`"%s"`, tag), fmt.Sprintf(`"%s/"`, tag))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if v.HasLink {
|
if v.HasLink {
|
||||||
|
|
Loading…
Reference in a new issue