mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
fix(PluginManager): return if any step of plugin update failed
This commit is contained in:
parent
0cb0bff714
commit
ba27dbe783
1 changed files with 3 additions and 0 deletions
|
|
@ -657,6 +657,7 @@ namespace Dalamud.Plugin.Internal
|
|||
{
|
||||
Log.Error(ex, "Error during unload (update)");
|
||||
updateStatus.WasUpdated = false;
|
||||
return updateStatus;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -669,6 +670,7 @@ namespace Dalamud.Plugin.Internal
|
|||
{
|
||||
Log.Error(ex, "Error during disable (update)");
|
||||
updateStatus.WasUpdated = false;
|
||||
return updateStatus;
|
||||
}
|
||||
|
||||
try
|
||||
|
|
@ -679,6 +681,7 @@ namespace Dalamud.Plugin.Internal
|
|||
{
|
||||
Log.Error(ex, "Error during install (update)");
|
||||
updateStatus.WasUpdated = false;
|
||||
return updateStatus;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue