Ensure SetCollectionAttribute also updates attributes

Previously, it would only INSERT.
This commit is contained in:
Matt Baer 2023-09-21 18:55:48 -04:00
parent 5d4ebb59c7
commit e0c165ff1e
1 changed files with 1 additions and 1 deletions

View File

@ -2274,7 +2274,7 @@ func (db *datastore) GetCollectionAttribute(id int64, attr string) string {
}
func (db *datastore) SetCollectionAttribute(id int64, attr, v string) error {
_, err := db.Exec("INSERT INTO collectionattributes (collection_id, attribute, value) VALUES (?, ?, ?)", id, attr, v)
_, err := db.Exec("INSERT INTO collectionattributes (collection_id, attribute, value) VALUES (?, ?, ?) "+db.upsert("collection_id", "attribute")+" value = ?", id, attr, v, v)
if err != nil {
log.Error("Unable to INSERT into collectionattributes: %v", err)
return err