fix(browse): remove source_url reference (column is source; field unused in response)
This commit is contained in:
parent
0b9e3553a7
commit
0d7223a12b
1 changed files with 1 additions and 1 deletions
|
|
@ -964,7 +964,7 @@ class Store:
|
||||||
rows = self._fetch_all(
|
rows = self._fetch_all(
|
||||||
"""
|
"""
|
||||||
SELECT r.id, r.title, r.category, r.keywords, r.ingredient_names,
|
SELECT r.id, r.title, r.category, r.keywords, r.ingredient_names,
|
||||||
r.calories, r.fat_g, r.protein_g, r.sodium_mg, r.source_url
|
r.calories, r.fat_g, r.protein_g, r.sodium_mg
|
||||||
FROM recipe_browser_fts fts
|
FROM recipe_browser_fts fts
|
||||||
JOIN recipes r ON r.id = fts.rowid
|
JOIN recipes r ON r.id = fts.rowid
|
||||||
WHERE fts MATCH ?
|
WHERE fts MATCH ?
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue