From ba0408855c3538d053fcace1d3f6cc17c4fb0b70 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20H=C3=B6rist?= Date: Fri, 24 Mar 2017 23:35:08 +0100 Subject: [PATCH] Fix regression from ad9370af --- src/common/jingle_content.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/jingle_content.py b/src/common/jingle_content.py index ee665d293..1c457013c 100644 --- a/src/common/jingle_content.py +++ b/src/common/jingle_content.py @@ -202,7 +202,7 @@ class JingleContent: # if the file is less than 10 mb, then it is small # lets calculate it right away if self.file_props.size < 10000000 and not self.file_props.hash_: - hash_data = content._compute_hash() + hash_data = self._compute_hash() if hash_data: file_tag.addChild(node=hash_data) pjid = gajim.get_jid_without_resource(self.session.peerjid)