From 830a11b6ecff73bebfa90a75cb61aeeb7f254715 Mon Sep 17 00:00:00 2001 From: Raymond Date: Tue, 14 Sep 2021 13:47:33 -0400 Subject: [PATCH] fix: update plugin button didnt work --- Dalamud/Interface/Internal/Windows/PluginInstallerWindow.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dalamud/Interface/Internal/Windows/PluginInstallerWindow.cs b/Dalamud/Interface/Internal/Windows/PluginInstallerWindow.cs index d55e70946..6d60a1da8 100644 --- a/Dalamud/Interface/Internal/Windows/PluginInstallerWindow.cs +++ b/Dalamud/Interface/Internal/Windows/PluginInstallerWindow.cs @@ -1361,7 +1361,7 @@ namespace Dalamud.Interface.Internal.Windows { this.installStatus = OperationStatus.InProgress; - Task.Run(() => pluginManager.UpdateSinglePluginAsync(update, true, false)) + Task.Run(async () => await pluginManager.UpdateSinglePluginAsync(update, true, false)) .ContinueWith(task => { // There is no need to set as Complete for an individual plugin installation