mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-27 15:32:59 +02:00
Merge branch 'master' into pu/mp
This commit is contained in:
@@ -740,7 +740,7 @@ bool CTimerList::RemoteBoxChanExists(t_channel_id channel_id)
|
||||
r_url += string_printf_helper(PRINTF_CHANNEL_ID_TYPE_NO_LEADING_ZEROS, channel_id);
|
||||
r_url = httpTool.downloadString(r_url, -1, httpConnectTimeout);
|
||||
|
||||
string errMsg = "";
|
||||
std::string errMsg = "";
|
||||
Json::Value root;
|
||||
bool ok = parseJsonFromString(r_url, &root, &errMsg);
|
||||
if (!ok) {
|
||||
@@ -797,7 +797,7 @@ void CTimerList::RemoteBoxTimerList(CTimerd::TimerList &rtimerlist)
|
||||
r_url = httpTool.downloadString(r_url, -1, httpConnectTimeout);
|
||||
//printf("[remotetimer] timers:%s\n",r_url.c_str());
|
||||
|
||||
string errMsg = "";
|
||||
std::string errMsg = "";
|
||||
Json::Value root;
|
||||
bool ok = parseJsonFromString(r_url, &root, &errMsg);
|
||||
if (!ok) {
|
||||
@@ -1286,7 +1286,7 @@ void CTimerList::paintItem(int pos)
|
||||
r_url += string_printf_helper(PRINTF_CHANNEL_ID_TYPE_NO_LEADING_ZEROS, timer.channel_id);
|
||||
r_url = httpTool.downloadString(r_url, -1, httpConnectTimeout);
|
||||
|
||||
string errMsg = "";
|
||||
std::string errMsg = "";
|
||||
Json::Value root;
|
||||
bool ok = parseJsonFromString(r_url, &root, &errMsg);
|
||||
if (!ok) {
|
||||
|
Reference in New Issue
Block a user