mirror of
https://github.com/oxen-io/session-android.git
synced 2025-04-18 18:51:59 +00:00
Merge pull request #2264 from mcginty/write-part-data-fix
use PartAuthority when fetching part streams
This commit is contained in:
commit
a57c7c3e09
@ -345,7 +345,7 @@ public class PartDatabase extends Database {
|
|||||||
return writePartData(masterSecret, part, new ByteArrayInputStream(part.getData()));
|
return writePartData(masterSecret, part, new ByteArrayInputStream(part.getData()));
|
||||||
} else if (part.getDataUri() != null) {
|
} else if (part.getDataUri() != null) {
|
||||||
Log.w(TAG, "Writing part data from URI");
|
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);
|
return writePartData(masterSecret, part, in);
|
||||||
} else {
|
} else {
|
||||||
throw new MmsException("Part is empty!");
|
throw new MmsException("Part is empty!");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user