Skip to content

Commit

Permalink
Fix: Incorrent catch target class.
Browse files Browse the repository at this point in the history
  • Loading branch information
burningtnt committed Jan 18, 2024
1 parent f1bd0ed commit 65c706b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ public static void setupListener() throws UnsupportedOperationException {
} catch (IncompatibleClassChangeError e) {
try {
addImageLoaderFactory2();
} catch (Throwable e2) {
} catch (IncompatibleClassChangeError e2) {
e2.addSuppressed(e);
throw new UnsupportedOperationException("Cannot install WEBPImageLoader", e2);
}
Expand Down

0 comments on commit 65c706b

Please sign in to comment.