diff options
author | Jaakko Keränen <jaakko.keranen@iki.fi> | 2021-03-07 13:51:12 +0200 |
---|---|---|
committer | Jaakko Keränen <jaakko.keranen@iki.fi> | 2021-03-07 13:51:29 +0200 |
commit | a806290e35706a16ac917d8fd6c29a2f0fbcdffc (patch) | |
tree | 713df8d788ddf42d205bf2e354b524ffd5e36595 /src/app.c | |
parent | e9b29fb71df2096342b4560e56491212e6137b00 (diff) |
App: Fetch remote bookmarks after init finished
Diffstat (limited to 'src/app.c')
-rw-r--r-- | src/app.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 | ||
667 | static void deinit_App(iApp *d) { | 667 | static void deinit_App(iApp *d) { |