summaryrefslogtreecommitdiff
path: root/src/bookmarks.c
diff options
context:
space:
mode:
authorJaakko Keränen <jaakko.keranen@iki.fi>2020-09-13 17:40:13 +0300
committerJaakko Keränen <jaakko.keranen@iki.fi>2020-09-13 17:40:13 +0300
commit9adb3b5f7ed3688e0b7347e29967154df72ab999 (patch)
treef3a86535b2c9753b82f0bde3830958d31e8550dc /src/bookmarks.c
parent896eb14063b7cd19cb103bd1c48d4a0781bf25a4 (diff)
Default set of bookmarks for first run
Diffstat (limited to 'src/bookmarks.c')
-rw-r--r--src/bookmarks.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bookmarks.c b/src/bookmarks.c
index 6a5eb296..8fe7d109 100644
--- a/src/bookmarks.c
+++ b/src/bookmarks.c
@@ -145,7 +145,7 @@ void add_Bookmarks(iBookmarks *d, const iString *url, const iString *title, cons
145 iBookmark *bm = new_Bookmark(); 145 iBookmark *bm = new_Bookmark();
146 set_String(&bm->url, url); 146 set_String(&bm->url, url);
147 set_String(&bm->title, title); 147 set_String(&bm->title, title);
148 set_String(&bm->tags, tags); 148 if (tags) set_String(&bm->tags, tags);
149 bm->icon = icon; 149 bm->icon = icon;
150 initCurrent_Time(&bm->when); 150 initCurrent_Time(&bm->when);
151 insert_Bookmarks_(d, bm); 151 insert_Bookmarks_(d, bm);