1
0
Fork 0
mirror of https://github.com/miniflux/v2.git synced 2025-08-11 17:51:01 +00:00

Fix regression: the entire hstore field is replaced when updating settings

This commit is contained in:
Frédéric Guillot 2020-06-16 19:50:55 -07:00
parent da4ea18003
commit f52f00abcf
2 changed files with 2 additions and 2 deletions

View file

@ -16,5 +16,5 @@ type Profile struct {
}
func (p Profile) String() string {
return fmt.Sprintf(`ID=%s ; Username=%s`, p.ID, p.Username)
return fmt.Sprintf(`Key=%s ; ID=%s ; Username=%s`, p.Key, p.ID, p.Username)
}