Commit 6b82e3fa authored by Varun Patil's avatar Varun Patil

Fix regression in big image

parent 12d9e035
...@@ -122,7 +122,7 @@ public class InstiAppFirebaseMessagingService extends FirebaseMessagingService { ...@@ -122,7 +122,7 @@ public class InstiAppFirebaseMessagingService extends FirebaseMessagingService {
try { try {
Bitmap image = null; Bitmap image = null;
if (imageUrl != null) { if (imageUrl != null) {
Picasso.get().load(imageUrl).get(); image = Picasso.get().load(imageUrl).get();
} }
Bitmap largeIcon = null; Bitmap largeIcon = null;
if (largeIconUrl != null) { if (largeIconUrl != null) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment