1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-09-29 21:49:07 +00:00

Fix building with BUILD_HTTP

bug reported by arclance
This commit is contained in:
Pavel Labath 2012-06-04 23:29:27 +02:00
parent dea2c56582
commit b5dc59e9b2

View File

@ -1856,7 +1856,7 @@ static void draw_text(void)
if(http_refresh.get(*state)) {
webpage.append("<meta http-equiv=\"refresh\" content=\"");
std::stringstream update_interval_str;
update_interval_str << update_interval;
update_interval_str << update_interval.get(*state);
webpage.append(update_interval_str.str());
webpage.append("\" />");
}