# HG changeset patch # User Goffi # Date 1450386172 -3600 # Node ID 27a140aa50236394b7b828f0235ec6869df79a90 # Parent cbcc223c323a09ebecb873f02fd940b3170ef20a plugin XEP-0234: log file transfer "terminated" instead of "completed", as the file may not be complete (check is done after) diff -r cbcc223c323a -r 27a140aa5023 src/plugins/plugin_xep_0234.py --- a/src/plugins/plugin_xep_0234.py Thu Dec 17 21:58:41 2015 +0100 +++ b/src/plugins/plugin_xep_0234.py Thu Dec 17 22:02:52 2015 +0100 @@ -306,7 +306,7 @@ return True def _finishedCb(self, dummy, session, content_name, content_data, profile): - log.info(u"File transfer completed") + log.info(u"File transfer terminated") if content_data['senders'] != session['role']: # we terminate the session only if we are the receiver, # as recommanded in XEP-0234 ยง2 (after example 6)