Fix regression in e921e7de

This commit is contained in:
Guy Scharf 2020-05-26 12:34:22 -07:00
parent d666feb362
commit 7a6284e72b

View File

@ -261,7 +261,7 @@ void BackupJournal(QString filename)
QDateTime dt = sess->settings[LastUpdated].toDateTime();
#if QT_VERSION < QT_VERSION_CHECK(5,8,0)
qint64 dtx = dt.toMSecsSinceEpoch()/1000L;
#elif
#else
qint64 dtx = dt.toSecsSinceEpoch();
#endif
QString dts = QString::number(dtx);