fix async usage

This commit is contained in:
Adam Hathcock
2025-10-29 09:55:11 +00:00
parent 58bab0d310
commit b83e6ee4ce

View File

@@ -115,7 +115,7 @@ internal partial class Unpack : IRarUnpack
{
// TODO: When compression methods are converted to async, call them here
// For now, fall back to synchronous version
DoUnpack(fileHeader.CompressionAlgorithm, fileHeader.IsSolid);
await DoUnpackAsync(fileHeader.CompressionAlgorithm, fileHeader.IsSolid, cancellationToken).ConfigureAwait(false);
}
}