mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-06-14 10:54:43 -04:00
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.
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user