mirror of
https://github.com/StudentBlake/XCI-Explorer
synced 2024-11-10 06:34:15 +00:00
Fix potential crash
This commit is contained in:
parent
ab44465243
commit
690fcc70a7
1 changed files with 1 additions and 1 deletions
|
@ -115,7 +115,7 @@ namespace XCI_Explorer
|
|||
|
||||
if (!File.Exists("keys.txt"))
|
||||
{
|
||||
if (MessageBox.Show("keys.txt is missing.\nDo you want to automatically download it now?", "XCI Explorer", MessageBoxButtons.YesNo) == DialogResult.Yes)
|
||||
if (File.Exists("Get-keys.txt.bat") && MessageBox.Show("keys.txt is missing.\nDo you want to automatically download it now?", "XCI Explorer", MessageBoxButtons.YesNo) == DialogResult.Yes)
|
||||
{
|
||||
Process process = new Process();
|
||||
process.StartInfo = new ProcessStartInfo
|
||||
|
|
Loading…
Reference in a new issue