mirror of
https://github.com/Llewellynvdm/conky.git
synced 2024-11-05 21:07:52 +00:00
Fixed parsing of rss parameters (last 2 are optional) and typo in rss.c; there is still a problem with feed_titlesince data->title doesn't get filled before processing
This commit is contained in:
parent
381b47a0a9
commit
0be6e37e07
@ -2848,7 +2848,7 @@ static struct text_object *construct_text_object(const char *s,
|
||||
|
||||
argc = sscanf(arg, "%127s %f %63s %d %u", uri, &interval, action,
|
||||
&act_par, &nrspaces);
|
||||
if (argc == 5) {
|
||||
if (argc >= 3) {
|
||||
obj->data.rss.uri = uri;
|
||||
obj->data.rss.interval = interval > 0 ? interval * 60 : 15*60;
|
||||
obj->data.rss.action = action;
|
||||
|
@ -54,7 +54,7 @@ void rss_process_info(char *p, int p_max_size, char *uri, char *action, int
|
||||
curloc->process_function = &prss_parse_data;
|
||||
ccurl_init_thread(curloc, interval);
|
||||
if (!curloc->p_timed_thread) {
|
||||
ERR("error setting up weather thread");
|
||||
ERR("error setting up RSS thread");
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user