Merge pull request #1014 from Aireil/reload_everything_everywhere

This commit is contained in:
goat 2022-09-16 19:43:49 +02:00 committed by GitHub
commit a62d84e3ca
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2089,6 +2089,11 @@ namespace Dalamud.Interface.Internal.Windows.PluginInstaller
Task.Run(() =>
{
if (plugin.IsDev)
{
plugin.ReloadManifest();
}
var unloadTask = Task.Run(() => plugin.UnloadAsync())
.ContinueWith(this.DisplayErrorContinuation, Locs.ErrorModal_UnloadFail(plugin.Name));