Skip to content

Commit dc246cb

Browse files
authored
Merge pull request #133 from faststats-dev/fix/unhandled-errors
Fix unhandled errors being reported as handled
2 parents f7d9ddd + aab2d4b commit dc246cb

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)