fix: use correct account url

This commit is contained in:
Anna 2024-07-02 10:05:20 -04:00
parent 02e357ae7b
commit a127db4036
Signed by: anna
GPG Key ID: D0943384CD9F87D1

View File

@ -95,7 +95,7 @@ public class Plugin : IDalamudPlugin {
internal void GetApiKey() { internal void GetApiKey() {
Task.Run(async () => { 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(); var key = await resp.Content.ReadAsStringAsync();
this.Config.ApiKey = key; this.Config.ApiKey = key;
this.SaveConfig(); this.SaveConfig();