Fix for setup executable unable to be launched (#81)

This commit is contained in:
DecDuck
2025-07-30 09:57:07 +10:00
committed by GitHub
parent 739e6166c5
commit d0e4aea5ce
+1 -3
View File
@@ -181,9 +181,7 @@ impl ProcessManager<'_> {
.cloned() .cloned()
{ {
Some(GameDownloadStatus::Installed { version_name, .. }) => version_name, Some(GameDownloadStatus::Installed { version_name, .. }) => version_name,
Some(GameDownloadStatus::SetupRequired { .. }) => { Some(GameDownloadStatus::SetupRequired { version_name, .. }) => version_name,
return Err(ProcessError::SetupRequired);
}
_ => return Err(ProcessError::NotInstalled), _ => return Err(ProcessError::NotInstalled),
}; };
let meta = DownloadableMetadata { let meta = DownloadableMetadata {