1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-09-30 05:59:07 +00:00

Bugfix: RSS interval was in secs instead of mins

This commit is contained in:
Nikolas Garofil 2010-05-06 11:54:47 +02:00
parent a9b12b3074
commit f6ab74f3a6

View File

@ -63,7 +63,7 @@ static void rss_process_info(char *p, int p_max_size, char *uri, char *action, i
memset(curloc->result, 0, sizeof(PRSS));
curloc->process_function = std::bind(prss_parse_data,
std::placeholders::_1, std::placeholders::_2);
ccurl_init_thread(curloc, interval);
ccurl_init_thread(curloc, interval * 60);
if (!curloc->p_timed_thread) {
NORM_ERR("error setting up RSS thread");
}