Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
gajim
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
254
Issues
254
List
Board
Labels
Milestones
Merge Requests
10
Merge Requests
10
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
gajim
gajim
Commits
c2e2dd9a
Commit
c2e2dd9a
authored
Dec 04, 2018
by
Philipp Hörist
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix MUC nick change
parent
86bbdd21
Pipeline
#2761
passed with stages
in 3 minutes and 40 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
groupchat_control.py
gajim/groupchat_control.py
+2
-2
No files found.
gajim/groupchat_control.py
View file @
c2e2dd9a
...
...
@@ -1812,7 +1812,7 @@ class GroupchatControl(ChatControlBase):
elif
'303'
in
obj
.
status_code
:
# Someone changed their nick
if
obj
.
new_nick
==
self
.
new_nick
or
obj
.
nick
==
self
.
nick
:
# We changed our nick
self
.
change_nick
(
obj
.
new_nick
)
self
.
_
change_nick
(
obj
.
new_nick
)
self
.
new_nick
=
''
s
=
_
(
'You are now known as
%
s'
)
%
self
.
nick
else
:
...
...
@@ -1882,7 +1882,7 @@ class GroupchatControl(ChatControlBase):
if
not
iter_
:
if
'210'
in
obj
.
status_code
:
# Server changed our nick
self
.
change_nick
(
obj
.
nick
)
self
.
_
change_nick
(
obj
.
nick
)
s
=
_
(
'You are now known as
%
s'
)
%
nick
self
.
print_conversation
(
s
,
'info'
,
graphics
=
False
)
iter_
=
self
.
add_contact_to_roster
(
obj
.
nick
,
obj
.
show
,
role
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment