We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d886be commit 29dbc01Copy full SHA for 29dbc01
xivModdingFramework/Mods/Modding.cs
@@ -101,6 +101,10 @@ public static bool ValidateModlist(string ffxivDirectory = null)
101
if (res != null)
102
{
103
return true;
104
+ } else
105
+ {
106
+ // Modlist failed to parse.
107
+ return false;
108
}
109
110
catch (Exception ex)
@@ -193,7 +197,7 @@ internal static async Task<ModList> INTERNAL_GetModList(bool writeEnabled)
193
197
194
198
catch(Exception ex)
195
199
196
- throw new FileNotFoundException("Failedto find or parse modlist file.\n\n" + ex.Message);
200
+ throw new FileNotFoundException("Failed to find or parse modlist file.\n\n" + ex.Message);
201
202
finally
203
0 commit comments