Skip to content

Commit aab2d4b

Browse files
committed
Fix unhandled errors being reported as handled
Silly little oversight :)
1 parent f7d9ddd commit aab2d4b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/java/dev/faststats/core/ErrorHelper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public static JsonObject compile(final Throwable error, @Nullable final List<Str
4040
if (message != null) report.addProperty("message", message);
4141

4242
report.add("stack", stacktrace);
43-
report.addProperty("handled", true);
43+
report.addProperty("handled", handled);
4444

4545
return report;
4646
}

0 commit comments

Comments
 (0)