mirror of
https://github.com/ArcaneChat/android.git
synced 2026-07-03 14:05:24 +02:00
Merge pull request #3724 from deltachat/adb/issue-3721
avoid NPE in UriGlideRenderer
This commit is contained in:
@@ -303,7 +303,7 @@ final class UriGlideRenderer implements Renderer {
|
||||
|
||||
@Override
|
||||
public void writeToParcel(Parcel dest, int flags) {
|
||||
dest.writeString(imageUri.toString());
|
||||
dest.writeString(imageUri!=null? imageUri.toString() : "");
|
||||
dest.writeInt(decryptable ? 1 : 0);
|
||||
dest.writeInt(maxWidth);
|
||||
dest.writeInt(maxHeight);
|
||||
|
||||
Reference in New Issue
Block a user