mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-16 05:34:16 +01:00
fix: correctly handle UiBuilder event exception
This commit is contained in:
parent
1cf6129085
commit
1df07d5ed3
1 changed files with 1 additions and 1 deletions
|
|
@ -95,7 +95,7 @@ namespace Dalamud.Interface
|
||||||
try {
|
try {
|
||||||
OnBuildUi?.Invoke();
|
OnBuildUi?.Invoke();
|
||||||
} catch (Exception ex) {
|
} catch (Exception ex) {
|
||||||
Log.Error("[{0}] UiBuilder OnBuildUi caught exception");
|
Log.Error(ex, "[{0}] UiBuilder OnBuildUi caught exception", this.namespaceName);
|
||||||
OnBuildUi = null;
|
OnBuildUi = null;
|
||||||
OnOpenConfigUi = null;
|
OnOpenConfigUi = null;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue