Skip to content

Commit f26b102

Browse files
committed
bug fix
1 parent bce5163 commit f26b102

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/maxgamer/quickshop/util/reporter/error/RollbarErrorReporter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ private void sendError0(@NotNull Throwable throwable, @NotNull String... context
129129
return;
130130
}
131131
if (throwable.getCause() != null) {
132-
if (ignoredException.contains(throwable.getCause())) {
132+
if (ignoredException.contains(throwable.getCause().getClass())) {
133133
return;
134134
}
135135
}

0 commit comments

Comments
 (0)