Fix name error

This commit is contained in:
Alessio 2024-03-11 21:16:19 -07:00
parent 73c5803a47
commit 862c8a399e

View File

@ -121,7 +121,7 @@ func (p Profile) SaveDMTrove(trove DMTrove, should_download bool) {
url.IsContentDownloaded = true url.IsContentDownloaded = true
// Update it in the DB // Update it in the DB
_, err = p.DB.NamedExec(`update chat_message_urls set is_downloaded = :is_downloaded where id = :id`, url) _, err = p.DB.NamedExec(`update chat_message_urls set is_content_downloaded = :is_content_downloaded where id = :id`, url)
if err != nil { if err != nil {
panic(err) panic(err)
} }