From 7bd4beb82d4db60dda8812f7149fff76539f5a8b Mon Sep 17 00:00:00 2001 From: Jack Bishop Date: Mon, 10 Jan 2022 17:02:42 +0000 Subject: [PATCH] update plugin query to new endpoint --- Torch.API/WebAPI/PluginQuery.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Torch.API/WebAPI/PluginQuery.cs b/Torch.API/WebAPI/PluginQuery.cs index 61dcf6a..ad6d481 100644 --- a/Torch.API/WebAPI/PluginQuery.cs +++ b/Torch.API/WebAPI/PluginQuery.cs @@ -12,7 +12,7 @@ namespace Torch.API.WebAPI { public class PluginQuery { - private const string ALL_QUERY = "https://torchapi.net/api/plugins"; + private const string ALL_QUERY = "https://torchapi.com/api/plugins"; private const string PLUGIN_QUERY = "https://torchapi.net/api/plugins/{0}"; private readonly HttpClient _client; private static readonly Logger Log = LogManager.GetCurrentClassLogger();