diff options
Diffstat (limited to 'plugins/omemo/src')
-rw-r--r-- | plugins/omemo/src/file_provider.vala | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/omemo/src/file_provider.vala b/plugins/omemo/src/file_provider.vala index 70e59574..0e11c8f4 100644 --- a/plugins/omemo/src/file_provider.vala +++ b/plugins/omemo/src/file_provider.vala @@ -91,7 +91,9 @@ public class FileProvider : Dino.FileProvider, Object { if (name == "Content-Length") content_length = val; }); file_transfer.mime_type = content_type; - file_transfer.size = int.parse(content_length); + if (content_length != null) { + file_transfer.size = int.parse(content_length); + } } else { warning("HTTP HEAD download status code " + head_message.status_code.to_string()); } |