Skip to content

Commit

Permalink
Fix .hyper files not adding hosts to host list
Browse files Browse the repository at this point in the history
  • Loading branch information
Stone-Red-Code committed Feb 20, 2022
1 parent 7783ebb commit 6ffdc72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion HyperbolicDownloader/FileProcessing/PublicHyperFileInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ namespace HyperbolicDownloader.FileProcessing;
internal class PublicHyperFileInfo
{
public string Hash { get; set; } = string.Empty;
public List<NetworkSocket> Hosts { get; } = new();
public List<NetworkSocket> Hosts { get; set; } = new();

public PublicHyperFileInfo()
{
Expand Down

0 comments on commit 6ffdc72

Please sign in to comment.