Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Bronko
gajim
Commits
71197932
Commit
71197932
authored
Dec 07, 2019
by
Philipp Hörist
Browse files
Simplify remove_account()
Use disable_account() before removing
parent
77613c22
Changes
1
Hide whitespace changes
Inline
Side-by-side
gajim/gui_interface.py
View file @
71197932
...
...
@@ -1800,40 +1800,17 @@ def disable_account(self, account):
app
.
config
.
set_per
(
'accounts'
,
account
,
'active'
,
False
)
def
remove_account
(
self
,
account
):
# Close all opened windows
self
.
roster
.
close_all
(
account
,
force
=
True
)
if
account
in
app
.
connections
:
app
.
connections
[
account
].
disconnect
(
reconnect
=
False
)
app
.
connections
[
account
].
cleanup
()
del
app
.
connections
[
account
]
self
.
disable_account
(
account
)
app
.
logger
.
remove_roster
(
app
.
get_jid_from_account
(
account
))
# Delete password must be before del_per() because it calls set_per()
# which would recreate the account with defaults values if not found
passwords
.
delete_password
(
account
)
app
.
config
.
del_per
(
'accounts'
,
account
)
del
self
.
instances
[
account
]
if
account
in
app
.
nicks
:
del
self
.
minimized_controls
[
account
]
del
app
.
nicks
[
account
]
del
app
.
block_signed_in_notifications
[
account
]
del
app
.
groups
[
account
]
app
.
contacts
.
remove_account
(
account
)
del
app
.
gc_connected
[
account
]
del
app
.
automatic_rooms
[
account
]
del
app
.
to_be_removed
[
account
]
del
app
.
newly_added
[
account
]
del
app
.
sleeper_state
[
account
]
del
app
.
last_message_time
[
account
]
del
app
.
status_before_autoaway
[
account
]
del
app
.
gajim_optional_features
[
account
]
del
app
.
caps_hash
[
account
]
if
len
(
app
.
connections
)
>=
2
:
# Do not merge accounts if only one exists
self
.
roster
.
regroup
=
app
.
config
.
get
(
'mergeaccounts'
)
else
:
self
.
roster
.
regroup
=
False
self
.
roster
.
setup_and_draw_roster
()
app
.
app
.
remove_account_actions
(
account
)
gui_menu_builder
.
build_accounts_menu
()
window
=
get_app_window
(
'AccountsWindow'
)
if
window
is
not
None
:
...
...
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