mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-08 09:37:53 +00:00
Contect selector: fix ESM date and version data encoding/decoding (#7764)
This commit is contained in:
parent
961c53f1c4
commit
327fafe739
@ -51,7 +51,8 @@ QByteArray ContentSelectorModel::EsmFile::encodedData() const
|
||||
QByteArray encodedData;
|
||||
QDataStream stream(&encodedData, QIODevice::WriteOnly);
|
||||
|
||||
stream << mFileName << mAuthor << mVersion << mModified.toString() << mPath << mDescription << mGameFiles;
|
||||
stream << mFileName << mAuthor << mVersion << mModified.toString(Qt::ISODate) << mPath << mDescription
|
||||
<< mGameFiles;
|
||||
|
||||
return encodedData;
|
||||
}
|
||||
@ -113,11 +114,11 @@ void ContentSelectorModel::EsmFile::setFileProperty(const FileProperty prop, con
|
||||
break;
|
||||
|
||||
case FileProperty_Format:
|
||||
mVersion = value.toInt();
|
||||
mVersion = value;
|
||||
break;
|
||||
|
||||
case FileProperty_DateModified:
|
||||
mModified = QDateTime::fromString(value);
|
||||
mModified = QDateTime::fromString(value, Qt::ISODate);
|
||||
break;
|
||||
|
||||
case FileProperty_FilePath:
|
||||
|
Loading…
Reference in New Issue
Block a user