Fix .hyper files not adding hosts to host list

This commit is contained in:
Stone_Red
2022-02-20 19:15:35 +01:00
parent 7783ebb2e9
commit 6ffdc720a4
@@ -5,7 +5,7 @@ namespace HyperbolicDownloader.FileProcessing;
internal class PublicHyperFileInfo internal class PublicHyperFileInfo
{ {
public string Hash { get; set; } = string.Empty; public string Hash { get; set; } = string.Empty;
public List<NetworkSocket> Hosts { get; } = new(); public List<NetworkSocket> Hosts { get; set; } = new();
public PublicHyperFileInfo() public PublicHyperFileInfo()
{ {