1
0
Fork 0

Fix duplicated bookmarks bug

This commit is contained in:
makeworld 2020-11-19 11:39:08 -05:00
parent ce81c97def
commit fb8af885ab
1 changed files with 2 additions and 2 deletions

View File

@ -108,10 +108,10 @@ func openBkmkModal(name string, exists bool, favicon string) (string, int) {
return bkmkModalText, action
}
var bkmkPageRaw = "# Bookmarks\r\n\r\n"
// Bookmarks displays the bookmarks page on the current tab.
func Bookmarks(t *tab) {
bkmkPageRaw := "# Bookmarks\r\n\r\n"
// Gather bookmarks
m, keys := bookmarks.All()
for i := range keys {