Fix error message for ARJ decompression failure

This commit is contained in:
2026-04-15 10:41:59 +01:00
parent cf9817b752
commit 0b9d6a44d7

View File

@@ -37,7 +37,7 @@ public partial class ArjStream : Stream
_ => throw new ArgumentException("Invalid method")
};
if(err != 0) throw new InvalidOperationException("ACE decompression failed");
if(err != 0) throw new InvalidOperationException("ARJ decompression failed");
// Adjust actual length in case it differs
_length = outLen;