Fix: error scan on Go 1.8

This commit is contained in:
Radhi Fadlillah 2018-03-06 16:05:08 +07:00
parent 5f790c705c
commit 5bea3de59b

View file

@ -466,7 +466,7 @@ func (db *SQLiteDatabase) UpdateBookmarks(bookmarks []model.Bookmark) (result []
stmtUpdateBookmarkContent.MustExec(
book.Title,
book.Content,
book.HTML,
string(book.HTML),
book.ID)
newTags := []model.Tag{}