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
parent
d0d799465b
commit
64d9dd77e7
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue