From 6ffdc720a42d34477b323a0e13f3f710952c8370 Mon Sep 17 00:00:00 2001 From: Stone_Red <56473591+Stone-Red-Code@users.noreply.github.com> Date: Sun, 20 Feb 2022 19:15:35 +0100 Subject: [PATCH] Fix `.hyper` files not adding hosts to host list --- HyperbolicDownloader/FileProcessing/PublicHyperFileInfo.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/HyperbolicDownloader/FileProcessing/PublicHyperFileInfo.cs b/HyperbolicDownloader/FileProcessing/PublicHyperFileInfo.cs index a357a69..28c0107 100644 --- a/HyperbolicDownloader/FileProcessing/PublicHyperFileInfo.cs +++ b/HyperbolicDownloader/FileProcessing/PublicHyperFileInfo.cs @@ -5,7 +5,7 @@ namespace HyperbolicDownloader.FileProcessing; internal class PublicHyperFileInfo { public string Hash { get; set; } = string.Empty; - public List Hosts { get; } = new(); + public List Hosts { get; set; } = new(); public PublicHyperFileInfo() {