fix(client): dispose of HttpClient

This commit is contained in:
Anna 2023-10-08 20:53:36 -04:00
parent 12f564cc6d
commit 6e048b0987
Signed by: anna
GPG Key ID: D0943384CD9F87D1
1 changed files with 2 additions and 1 deletions

View File

@ -12,7 +12,7 @@ using MessagePack;
namespace MegaMappingway;
public class Plugin : IDalamudPlugin {
public sealed class Plugin : IDalamudPlugin {
[PluginService]
internal static IPluginLog Log { get; private set; }
@ -49,6 +49,7 @@ public class Plugin : IDalamudPlugin {
this.Ui.Dispose();
this.Framework.Update -= this.FrameworkUpdate;
this.Hasher.Dispose();
this.Http.Dispose();
}
internal void SaveConfig() {