#5707 Change update notification url

This commit is contained in:
Andrew Nelless 2016-10-28 16:01:57 +01:00
parent af62174b59
commit ef9842c819
1 changed files with 7 additions and 7 deletions

View File

@ -146,17 +146,17 @@ ToolApp::notifyUpdate()
std::vector<String> parts = synergy::string::splitString(data, ':');
size_t count = parts.size();
if (count == 3) {
std::stringstream ss;
ss << JSON_URL << "notify/upgrade";
ss << "?from=" << parts[0];
ss << "&to=" << parts[1];
ss << "&serial=" << parts[2];
if (count == 3) {
std::stringstream ss;
ss << JSON_URL << "notify/update";
ss << "?from=" << parts[0];
ss << "&to=" << parts[1];
ss << "&serial=" << parts[2];
std::cout << ARCH->internet().get(ss.str()) << std::endl;
}
else {
throw XSynergy("Invalid upgrade data.");
throw XSynergy("Invalid update data.");
}
}