Skip to content

Commit

Permalink
remove debugging stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
jacob1 committed Jul 9, 2016
1 parent 16b9308 commit a3865c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/client/Client.cpp
Expand Up @@ -829,10 +829,10 @@ bool Client::CheckUpdate(void *updateRequest, bool checkSession)
int snapshotSnapshot = snapshotVersion["Snapshot"].asInt();
std::string snapshotFile = snapshotVersion["File"].asString();
std::string snapshotChangelog = snapshotVersion["Changelog"].asString();
//if (snapshotSnapshot > SNAPSHOT_ID)
if (snapshotSnapshot > SNAPSHOT_ID)
{
updateAvailable = true;
updateInfo = UpdateInfo(2, snapshotFile, snapshotChangelog, UpdateInfo::Snapshot);
updateInfo = UpdateInfo(snapshotSnapshot, snapshotFile, snapshotChangelog, UpdateInfo::Snapshot);
}
#endif

Expand Down

0 comments on commit a3865c8

Please sign in to comment.