Skip to content

Commit

Permalink
modified url getter
Browse files Browse the repository at this point in the history
  • Loading branch information
alanH1998 committed Apr 19, 2022
1 parent 00e2b17 commit 4d33fc5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/NHMCore/Mining/Plugins/MinerPluginsManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -695,6 +695,7 @@ public static void CrossReferenceInstalledWithOnline()
localPluginInfo.MinerPackageURL = pb.GetMinerBinsUrlsForPlugin().FirstOrDefault();
localPluginInfo.PluginDescription = ConstructLocalPluginDescription(pb);
localPluginInfo.SupportedDevicesAlgorithms = new Dictionary<string, List<string>>();
localPluginInfo.PackagePassword = pb.BinsPackagePassword;
var supportedList = pb.SupportedDevicesAlgorithmsDict();
foreach (var supported in supportedList)
{
Expand Down
2 changes: 1 addition & 1 deletion src/NHMCore/Mining/Plugins/PluginPackageInfoCR.cs
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ public string PluginPackageURL
{
get
{
var pluginURL = OnlineInfo?.PluginPackageURL ?? "N/A";
var pluginURL = GetInfoSource()?.PluginPackageURL ?? "N/A";
return pluginURL;
}
}
Expand Down

0 comments on commit 4d33fc5

Please sign in to comment.