Display server in remote-server-not-found error dialog

This commit is contained in:
Daniel Brötzmann 2019-04-24 10:55:29 +02:00 committed by Philipp Hörist
parent 04717274b3
commit eb6762a461
2 changed files with 7 additions and 3 deletions

View file

@ -296,7 +296,11 @@ class Discovery(BaseModule):
self._log.info('MUC disco error: %s', error) self._log.info('MUC disco error: %s', error)
app.nec.push_incoming_event( app.nec.push_incoming_event(
InformationEvent( InformationEvent(
None, dialog_name='unable-join-groupchat', args=error)) None,
dialog_name='unable-join-groupchat',
kwargs={
'server':stanza.getFrom(),
'error': error}))
return return
self._log.info('MUC info received: %s', stanza.getFrom()) self._log.info('MUC info received: %s', stanza.getFrom())

View file

@ -108,8 +108,8 @@ messages = {
ErrorDialog), ErrorDialog),
'unable-join-groupchat': Message( 'unable-join-groupchat': Message(
_('Unable to join Groupchat'), _('Unable to Join Group Chat'),
'%s', '%(server)s\n%(error)s',
ErrorDialog), ErrorDialog),
'gstreamer-error': Message( 'gstreamer-error': Message(