diff options
author | Christian Schneppe <christian@pix-art.de> | 2018-02-01 19:47:26 +0100 |
---|---|---|
committer | Christian Schneppe <christian@pix-art.de> | 2018-02-01 19:47:26 +0100 |
commit | 58e97e1b88446a57472f520de013179b3fdba88a (patch) | |
tree | 447d63fed96900c932b016e31de26f2c2b1c116c /src/main/java | |
parent | eac6075113e04f819a7dabb831aacf5cd8dab94a (diff) |
fixed crash on receiving files
Diffstat (limited to 'src/main/java')
-rw-r--r-- | src/main/java/de/pixart/messenger/services/NotificationService.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/de/pixart/messenger/services/NotificationService.java b/src/main/java/de/pixart/messenger/services/NotificationService.java index 646f257f9..4b46e9bd5 100644 --- a/src/main/java/de/pixart/messenger/services/NotificationService.java +++ b/src/main/java/de/pixart/messenger/services/NotificationService.java @@ -453,8 +453,8 @@ public class NotificationService { if (addedActionsCount < 3) { Message firstDownloadableMessage = getFirstDownloadableMessage(messages); if (firstDownloadableMessage != null) { - String label = mXmppConnectionService.getResources().getString(R.string.download_x_file, UIHelper.getFileDescriptionString(mXmppConnectionService, message)); - PendingIntent pendingDownloadIntent = createDownloadIntent(message); + String label = mXmppConnectionService.getResources().getString(R.string.download_x_file, UIHelper.getFileDescriptionString(mXmppConnectionService, firstDownloadableMessage)); + PendingIntent pendingDownloadIntent = createDownloadIntent(firstDownloadableMessage); NotificationCompat.Action downloadAction = new NotificationCompat.Action.Builder( R.drawable.ic_file_download_white_24dp, label, |