Skip to content

Commit

Permalink
#5617 Remove online check for plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
SymlessRemoved authored and Andrew Nelless committed Sep 29, 2016
1 parent 9dccb7a commit 23e5b61
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions src/lib/synergy/ToolApp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -174,19 +174,6 @@ ToolApp::loginAuth()
void
ToolApp::getPluginList()
{
String credentials;
std::cin >> credentials;

size_t separator = credentials.find(':');
String email = credentials.substr(0, separator);
String password = credentials.substr(separator + 1, credentials.length());

std::stringstream ss;
ss << JSON_URL << "plugins/";
ss << "?email=" << ARCH->internet().urlEncode(email);
ss << "&password=" << password;

std::cout << ARCH->internet().get(ss.str()) << std::endl;
}

void
Expand Down

0 comments on commit 23e5b61

Please sign in to comment.