Skip to content

Commit

Permalink
fix: prevent handleSendUriPicture crash
Browse files Browse the repository at this point in the history
  • Loading branch information
klxiaoniu committed Nov 9, 2023
1 parent 8aabfb0 commit 1f56e0e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ private static void handleSendUriPicture(@NonNull Context ctx, @NonNull Parcelab
}
data = baos.toByteArray();
cpTimeout.set(false);
} catch (IOException e) {
} catch (Exception e) {
FaultyDialog.show(ctx, e);
}
cpTimeout.set(false);
Expand Down

0 comments on commit 1f56e0e

Please sign in to comment.