UI: Fix update check logging (non-sparkle)

It currently says "Update check: latest version is x.x.x", which is a
bit confusion.  It should say "Update check: last known remote version
is x.x.x" instead.
master
jp9000 2015-07-05 23:46:34 -07:00
parent d0d799465b
commit 64d9dd77e7
1 changed files with 2 additions and 1 deletions

View File

@ -1555,7 +1555,8 @@ void OBSBasic::updateFileFinished(const QString &text, const QString &error)
long patch = obs_data_get_int(versionData, "patch");
long version = MAKE_SEMANTIC_VERSION(major, minor, patch);
blog(LOG_INFO, "Update check: latest version is: %ld.%ld.%ld",
blog(LOG_INFO, "Update check: last known remote version "
"is %ld.%ld.%ld",
major, minor, patch);
if (version > LIBOBS_API_VER) {