mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-05-20 10:24:58 +00:00
Fix update loop between release (#1465)
This commit is contained in:
parent
b7fe08519f
commit
7b16085c59
1 changed files with 3 additions and 1 deletions
|
@ -145,7 +145,9 @@ void CheckUpdate::CheckForUpdates(const bool showMessage) {
|
|||
return;
|
||||
}
|
||||
|
||||
QString currentRev = QString::fromStdString(Common::g_scm_rev).left(7);
|
||||
QString currentRev = (updateChannel == "Nightly")
|
||||
? QString::fromStdString(Common::g_scm_rev).left(7)
|
||||
: "v." + QString::fromStdString(Common::VERSION);
|
||||
QString currentDate = Common::g_scm_date;
|
||||
|
||||
QDateTime dateTime = QDateTime::fromString(latestDate, Qt::ISODate);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue