From ec93af8b06865751f0115b492a5ce4c8768f1bca Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Mon, 5 May 2025 16:50:44 -0400 Subject: [PATCH] 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. --- launcher/src/profile.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/launcher/src/profile.cpp b/launcher/src/profile.cpp index e445ec8..549f9f1 100644 --- a/launcher/src/profile.cpp +++ b/launcher/src/profile.cpp @@ -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); }