1
Fork 0
mirror of https://github.com/redstrate/Astra.git synced 2025-05-11 20:47:45 +00:00

Fall back to base boot version if Astra thinks it's not installed

I accidentally gave Astra the FFXIV 1.0 installer, and thus it ended up
in an invalid state (of course, since there's no ARR boot components.)
Instead of saying "this game version isn't supported" we should just use
the fallback version to re-initialize your game.
This commit is contained in:
Joshua Goins 2025-05-05 16:50:44 -04:00
parent 0fc78649f9
commit ec93af8b06

View file

@ -289,6 +289,9 @@ QString Profile::dalamudChannelName() const
QString Profile::bootVersion() const
{
if (m_bootVersion == nullptr || strlen(m_bootVersion) == 0) {
return QStringLiteral("2012.01.01.0000.0000");
}
return QString::fromLatin1(m_bootVersion);
}