Skip to content
Snippets Groups Projects
Commit ec03469c authored by Daniel Brötzmann's avatar Daniel Brötzmann
Browse files

fix: StartChat: Allow transport JIDs without successful discovery

Fixes #10924
parent 87125039
No related branches found
No related tags found
No related merge requests found
......@@ -391,7 +391,8 @@ def _disco_info_received(self, task: Task) -> None:
except StanzaError as error:
contact_conditions = [
'service-unavailable', # Prosody
'subscription-required' # ejabberd
'subscription-required', # ejabberd
'feature-not-implemented' # transports/bridges
]
if error.condition in contact_conditions:
# These error conditions are the result of
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment