mirror of
https://github.com/oxen-io/session-android.git
synced 2025-08-14 06:29:22 +00:00
use PartAuthority when fetching part streams
resolves the self-send case Fixes #2259 // FREEBIE
This commit is contained in:
@@ -345,7 +345,7 @@ public class PartDatabase extends Database {
|
||||
return writePartData(masterSecret, part, new ByteArrayInputStream(part.getData()));
|
||||
} else if (part.getDataUri() != null) {
|
||||
Log.w(TAG, "Writing part data from URI");
|
||||
InputStream in = context.getContentResolver().openInputStream(part.getDataUri());
|
||||
InputStream in = PartAuthority.getPartStream(context, masterSecret, part.getDataUri());
|
||||
return writePartData(masterSecret, part, in);
|
||||
} else {
|
||||
throw new MmsException("Part is empty!");
|
||||
|
Reference in New Issue
Block a user