From a127db4036ff465c4d3e8fae67541247b03bd48a Mon Sep 17 00:00:00 2001 From: Anna Date: Tue, 2 Jul 2024 10:05:20 -0400 Subject: [PATCH] fix: use correct account url --- client/Plugin.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/Plugin.cs b/client/Plugin.cs index 4272530..4f560bc 100644 --- a/client/Plugin.cs +++ b/client/Plugin.cs @@ -95,7 +95,7 @@ public class Plugin : IDalamudPlugin { internal void GetApiKey() { Task.Run(async () => { - var resp = await new HttpClient().PostAsync("http://192.168.174.246:8080/account", null); + var resp = await new HttpClient().PostAsync("https://tryfingerbuthole.anna.lgbt/account", null); var key = await resp.Content.ReadAsStringAsync(); this.Config.ApiKey = key; this.SaveConfig();