commit 7f5a10cce507bfeecab7390cbe3b0b2d5dcde3a3
parent d7e8526fe40b68b5910b3dbe004d5c5ca08a7f2c
Author: rhunk <101876869+rhunk@users.noreply.github.com>
Date:   Wed, 29 May 2024 18:05:51 +0200

fix(core): init failure stacktrace

Diffstat:
Mcore/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 @@ -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) } } }