mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
Fix reset and reload not working
This commit is contained in:
parent
9d6756fbca
commit
31c3c1ecc0
2 changed files with 3 additions and 3 deletions
|
|
@ -2556,7 +2556,7 @@ internal class PluginInstallerWindow : Window, IDisposable
|
|||
|
||||
if (ImGui.MenuItem(Locs.PluginContext_DeletePluginConfigReload))
|
||||
{
|
||||
this.ShowDeletePluginConfigWarningModal(plugin.Name).ContinueWith(t =>
|
||||
this.ShowDeletePluginConfigWarningModal(plugin.Manifest.InternalName).ContinueWith(t =>
|
||||
{
|
||||
var shouldDelete = t.Result;
|
||||
|
||||
|
|
@ -2571,7 +2571,7 @@ internal class PluginInstallerWindow : Window, IDisposable
|
|||
{
|
||||
this.installStatus = OperationStatus.Idle;
|
||||
|
||||
this.DisplayErrorContinuation(task, Locs.ErrorModal_DeleteConfigFail(plugin.Name));
|
||||
this.DisplayErrorContinuation(task, Locs.ErrorModal_DeleteConfigFail(plugin.Manifest.InternalName));
|
||||
});
|
||||
}
|
||||
});
|
||||
|
|
|
|||
|
|
@ -1094,7 +1094,7 @@ internal partial class PluginManager : IDisposable, IServiceType
|
|||
{
|
||||
try
|
||||
{
|
||||
this.PluginConfigs.Delete(plugin.Name);
|
||||
this.PluginConfigs.Delete(plugin.Manifest.InternalName);
|
||||
break;
|
||||
}
|
||||
catch (IOException)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue