Print downloading feed status

This commit is contained in:
Mike Sharov 2022-05-15 13:20:20 -04:00
parent ffc34f3b2b
commit 0591d0a3ae
1 changed files with 4 additions and 0 deletions

View File

@ -42,6 +42,10 @@ int UpdateFeed (struct feed* cur_ptr)
if (cur_ptr->smartfeed == 1)
return 0;
char stbuf [128];
snprintf (stbuf, sizeof(stbuf), _("Downloading %s"), cur_ptr->title ? cur_ptr->title : _("feed"));
UIStatus (stbuf, 0, 0);
// If current feed is an exec URL, run that command, otherwise fetch resource from network.
if (cur_ptr->execurl)
FilterExecURL (cur_ptr);