Exemple #1
0
 def _bytestreamErrorCB(self, con, iq_obj):
     id_ = iq_obj.getAttr('id')
     frm = helpers.get_full_jid_from_iq(iq_obj)
     query = iq_obj.getTag('query')
     app.proxy65_manager.error_cb(frm, query)
     jid = helpers.get_jid_from_iq(iq_obj)
     id_ = id_[3:]
     file_props = FilesProp.getFilePropBySid(id_)
     if not file_props:
         return
     file_props.error = -4
     from gajim.common.connection_handlers_events import FileRequestErrorEvent
     app.nec.push_incoming_event(FileRequestErrorEvent(None, conn=self._con,
         jid=jid, file_props=file_props, error_msg=''))
     raise nbxmpp.NodeProcessed
Exemple #2
0
 def _on_bytestream_error(self, _con, iq_obj):
     id_ = iq_obj.getAttr('id')
     frm = helpers.get_full_jid_from_iq(iq_obj)
     query = iq_obj.getTag('query')
     app.proxy65_manager.error_cb(frm, query)
     jid = helpers.get_jid_from_iq(iq_obj)
     id_ = id_[3:]
     file_props = FilesProp.getFilePropBySid(id_)
     if not file_props:
         return
     file_props.error = -4
     app.nec.push_incoming_event(
         NetworkEvent('file-request-error',
                      conn=self._con,
                      jid=app.get_jid_without_resource(jid),
                      file_props=file_props,
                      error_msg=''))
     raise nbxmpp.NodeProcessed