kopia lustrzana https://github.com/ryukoposting/Signal-Android
Fix for NPE with audio attachments.
rodzic
82df23dd41
commit
dec7fd4c8a
|
@ -67,11 +67,12 @@ public class AudioSlide extends Slide {
|
|||
cursor = context.getContentResolver().query(uri, new String[]{Audio.Media.MIME_TYPE}, null, null, null);
|
||||
|
||||
if (cursor != null && cursor.moveToFirst())
|
||||
part.setContentType(cursor.getString(0).getBytes());
|
||||
part.setContentType(cursor.getString(0).getBytes());
|
||||
else
|
||||
throw new IOException("Unable to query content type.");
|
||||
throw new IOException("Unable to query content type.");
|
||||
} finally {
|
||||
cursor.close();
|
||||
if (cursor != null)
|
||||
cursor.close();
|
||||
}
|
||||
|
||||
part.setDataUri(uri);
|
||||
|
|
Ładowanie…
Reference in New Issue