Skip to content

Commit d510fce

Browse files
committed
catches
1 parent cbdc329 commit d510fce

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

xivModdingFramework/Mods/EndwalkerUpgrade.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1697,6 +1697,11 @@ private static async Task<byte[]> ResolveFile(string path, Dictionary<string, Fi
16971697
{
16981698
try
16991699
{
1700+
if (files[path].RealPath == null || !File.Exists(files[path].RealPath))
1701+
{
1702+
return null;
1703+
}
1704+
17001705
return await TransactionDataHandler.GetUncompressedFile(files[path]);
17011706
} catch
17021707
{

0 commit comments

Comments
 (0)