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
eta
gajim
Commits
20c41136
Commit
20c41136
authored
19 years ago
by
Yann Leboulanger
Browse files
Options
Downloads
Patches
Plain Diff
join opened groupchat windows only for concerned account
parent
28fe6a06
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/gajim.py
+13
-13
13 additions, 13 deletions
src/gajim.py
with
13 additions
and
13 deletions
src/gajim.py
+
13
−
13
View file @
20c41136
...
...
@@ -958,19 +958,19 @@ class Interface:
# SIGNED_IN event is emitted when we sign in
# join already open groupchats
for
acct
in
gajim
.
connections
:
for
room_jid
in
self
.
instances
[
acct
][
'
gc
'
]:
if
room_jid
==
'
tabbed
'
:
continue
if
gajim
.
gc_connected
[
acct
][
room_jid
]:
continue
room
,
server
=
gajim
.
get_room_name_and_server_from_room_jid
(
room_jid
)
nick
=
self
.
instances
[
acct
][
'
gc
'
][
room_jid
].
nicks
[
room_jid
]
password
=
''
if
gajim
.
gc_passwords
.
has_key
(
room_jid
):
password
=
gajim
.
gc_passwords
[
room_jid
]
gajim
.
connections
[
acct
].
join_gc
(
nick
,
room
,
server
,
password
)
print
'
\n\n\n
signed_in
\n\n\n
'
for
room_jid
in
self
.
instances
[
acc
oun
t
][
'
gc
'
]:
if
room_jid
==
'
tabbed
'
:
continue
if
gajim
.
gc_connected
[
acc
oun
t
][
room_jid
]:
continue
room
,
server
=
gajim
.
get_room_name_and_server_from_room_jid
(
room_jid
)
nick
=
self
.
instances
[
acc
oun
t
][
'
gc
'
][
room_jid
].
nicks
[
room_jid
]
password
=
''
if
gajim
.
gc_passwords
.
has_key
(
room_jid
):
password
=
gajim
.
gc_passwords
[
room_jid
]
gajim
.
connections
[
acc
oun
t
].
join_gc
(
nick
,
room
,
server
,
password
)
def
read_sleepy
(
self
):
'''
Check idle status and change that status if needed
'''
...
...
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