From 67380670d761fe11ba9a12057e3889180c210bf5 Mon Sep 17 00:00:00 2001 From: Cinka Date: Sun, 11 May 2025 22:41:15 +0300 Subject: [PATCH] - fix: item path in unpack --- Nebula.Shared/Services/ContentService.Download.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Nebula.Shared/Services/ContentService.Download.cs b/Nebula.Shared/Services/ContentService.Download.cs index e2fabb3..0ec7a7f 100644 --- a/Nebula.Shared/Services/ContentService.Download.cs +++ b/Nebula.Shared/Services/ContentService.Download.cs @@ -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