make sentry engine context hotload safe

This commit is contained in:
Julian Krings 2025-06-14 11:46:51 +02:00
parent 8df6253604
commit 32d9a5e40a
No known key found for this signature in database
GPG Key ID: 208C6E08C3B718D2

View File

@ -96,8 +96,8 @@ public class IrisContext {
.qput("studio", engine.isStudio())
.qput("closed", engine.isClosed())
.qput("pack", new KMap<>()
.qput("key", dimension.getLoadKey())
.qput("version", dimension.getVersion())
.qput("key", dimension == null ? "" : dimension.getLoadKey())
.qput("version", dimension == null ? "" : dimension.getVersion())
.qput("hash", hash32 == null ? "" : Long.toHexString(hash32)))
.qput("mantle", new KMap<>()
.qput("idle", mantle.getAdjustedIdleDuration())