summaryrefslogtreecommitdiff
path: root/src/app.c
diff options
context:
space:
mode:
authorJaakko Keränen <jaakko.keranen@iki.fi>2021-03-07 13:51:12 +0200
committerJaakko Keränen <jaakko.keranen@iki.fi>2021-03-07 13:51:29 +0200
commita806290e35706a16ac917d8fd6c29a2f0fbcdffc (patch)
tree713df8d788ddf42d205bf2e354b524ffd5e36595 /src/app.c
parente9b29fb71df2096342b4560e56491212e6137b00 (diff)
App: Fetch remote bookmarks after init finished
Diffstat (limited to 'src/app.c')
-rw-r--r--src/app.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app.c b/src/app.c
index f4d04145..2acc05d3 100644
--- a/src/app.c
+++ b/src/app.c
@@ -634,7 +634,6 @@ static void init_App_(iApp *d, int argc, char **argv) {
634 collectNewCStr_String("Getting Started"), 634 collectNewCStr_String("Getting Started"),
635 collectNewCStr_String("remotesource"), 635 collectNewCStr_String("remotesource"),
636 0x1f306); 636 0x1f306);
637 fetchRemote_Bookmarks(d->bookmarks);
638 } 637 }
639 init_Feeds(dataDir_App_()); 638 init_Feeds(dataDir_App_());
640 /* Widget state init. */ 639 /* Widget state init. */
@@ -662,6 +661,7 @@ static void init_App_(iApp *d, int argc, char **argv) {
662 } 661 }
663 iRelease(openCmds); 662 iRelease(openCmds);
664 } 663 }
664 fetchRemote_Bookmarks(d->bookmarks);
665} 665}
666 666
667static void deinit_App(iApp *d) { 667static void deinit_App(iApp *d) {