Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
gajim
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Weblate
gajim
Commits
f501c2c4
Commit
f501c2c4
authored
15 years ago
by
Yann Leboulanger
Browse files
Options
Downloads
Patches
Plain Diff
prevent traceback when a room is destroyed. Fixes #5194
parent
2ffd6cbc
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/common/connection_handlers.py
+7
-6
7 additions, 6 deletions
src/common/connection_handlers.py
with
7 additions
and
6 deletions
src/common/connection_handlers.py
+
7
−
6
View file @
f501c2c4
...
...
@@ -2329,12 +2329,13 @@ class ConnectionHandlers(ConnectionVcard, ConnectionBytestream, ConnectionDisco,
r
=
destroy
.
getTagData
(
'
reason
'
)
if
r
:
reason
+=
'
(%s)
'
%
r
try
:
jid
=
helpers
.
parse_jid
(
destroy
.
getAttr
(
'
jid
'
))
except
common
.
helpers
.
InvalidFormat
:
pass
if
jid
:
reason
+=
'
\n
'
+
_
(
'
You can join this room instead: %s
'
)
%
jid
if
destroy
.
getAttr
(
'
jid
'
):
try
:
jid
=
helpers
.
parse_jid
(
destroy
.
getAttr
(
'
jid
'
))
reason
+=
'
\n
'
+
_
(
'
You can join this room instead: %s
'
)
\
%
jid
except
common
.
helpers
.
InvalidFormat
:
pass
statusCode
=
[
'
destroyed
'
]
else
:
reason
=
prs
.
getReason
()
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment