We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5bb704 commit 2836545Copy full SHA for 2836545
app/src/main/java/org/thoughtcrime/securesms/database/AttachmentDatabase.java
@@ -981,7 +981,9 @@ private ThumbnailData generateVideoThumbnail(AttachmentId attachmentId) {
981
982
try {
983
retriever.close();
984
- } catch (IOException e) {}
+ } catch (IOException e) {
985
+ Log.w(TAG, "Error while closing the retriever in AttachmentDatabase > generateVideoThumbnail: "+e.toString());
986
+ }
987
988
Log.i(TAG, "Generated video thumbnail...");
989
return new ThumbnailData(bitmap);
0 commit comments