From 7f5a10cce507bfeecab7390cbe3b0b2d5dcde3a3 Mon Sep 17 00:00:00 2001 From: rhunk <101876869+rhunk@users.noreply.github.com> Date: Wed, 29 May 2024 18:05:51 +0200 Subject: [PATCH] fix(core): init failure stacktrace --- core/src/main/kotlin/me/rhunk/snapenhance/core/SnapEnhance.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/kotlin/me/rhunk/snapenhance/core/SnapEnhance.kt b/core/src/main/kotlin/me/rhunk/snapenhance/core/SnapEnhance.kt index b412bee9..7ed93b53 100644 --- a/core/src/main/kotlin/me/rhunk/snapenhance/core/SnapEnhance.kt +++ b/core/src/main/kotlin/me/rhunk/snapenhance/core/SnapEnhance.kt @@ -89,7 +89,7 @@ class SnapEnhance { isBridgeInitialized = true }.onFailure { logCritical("Failed to initialize bridge", it) - InAppOverlay.showCrashOverlay("SnapEnhance failed to initialize. Please check logs for more details.") + InAppOverlay.showCrashOverlay("SnapEnhance failed to initialize. Please check logs for more details.", it) } } }