diff options
author | fiaxh <git@lightrise.org> | 2018-12-29 19:15:25 +0100 |
---|---|---|
committer | fiaxh <git@lightrise.org> | 2018-12-31 16:49:22 +0100 |
commit | 446e86d4ad798655aa1a83aebc86f9f2431484df (patch) | |
tree | 85948047dcc223ad1ccf130f087fb8a2c2382a11 /main/src/ui/notifications.vala | |
parent | 420942873a595415d09c9a48b9950c214e77008b (diff) | |
download | dino-446e86d4ad798655aa1a83aebc86f9f2431484df.tar.gz dino-446e86d4ad798655aa1a83aebc86f9f2431484df.zip |
Check FileTransfer's mime_type for null (unknown) when handeling it
fixes #479
Diffstat (limited to 'main/src/ui/notifications.vala')
-rw-r--r-- | main/src/ui/notifications.vala | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/main/src/ui/notifications.vala b/main/src/ui/notifications.vala index 77a290a0..277a7a09 100644 --- a/main/src/ui/notifications.vala +++ b/main/src/ui/notifications.vala @@ -62,10 +62,11 @@ public class Notifications : Object { FileItem file_item = content_item as FileItem; FileTransfer transfer = file_item.file_transfer; + bool file_is_image = transfer.mime_type != null && transfer.mime_type.has_prefix("image"); if (transfer.direction == Message.DIRECTION_SENT) { - text = transfer.mime_type.has_prefix("image") ? _("Image sent") : _("File sent"); + text = file_is_image ? _("Image sent") : _("File sent"); } else { - text = transfer.mime_type.has_prefix("image") ? _("Image received") : _("File received"); + text = file_is_image ? _("Image received") : _("File received"); } break; } |