mirror of
https://github.com/aaru-dps/Aaru.git
synced 2026-07-08 17:56:18 +00:00
Fix error message for ARJ decompression failure
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user