- fix: item path in unpack

This commit is contained in:
2025-05-11 22:41:15 +03:00
parent 39308fc316
commit 67380670d7

View File

@@ -83,7 +83,7 @@ public partial class ContentService
if (hashApi.TryOpen(item, out var stream))
{
_logger.Log($"Unpack {item.Hash} to: {item.Path}");
otherApi.Save(item.Hash, stream);
otherApi.Save(item.Path, stream);
stream.Close();
}
else