Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gajim
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Link Mauve
gajim
Commits
0d7316be
Commit
0d7316be
authored
Oct 18, 2019
by
Philipp Hörist
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
AccountCreation: Register plugin modules after successful registration
Fixes #9856
parent
0acfc4c8
Pipeline
#4391
passed with stages
in 2 minutes and 42 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
gajim/gtk/account_wizard.py
gajim/gtk/account_wizard.py
+4
-1
No files found.
gajim/gtk/account_wizard.py
View file @
0d7316be
...
...
@@ -293,7 +293,6 @@ class AccountCreationWizard:
100
,
self
.
update_progressbar
)
# Get form from serveur
con
=
connection
.
Connection
(
self
.
account
)
app
.
plugin_manager
.
register_modules_for_account
(
con
)
app
.
connections
[
self
.
account
]
=
con
con
.
new_account
(
self
.
account
,
config
)
elif
cur_page
==
3
:
...
...
@@ -458,6 +457,10 @@ class AccountCreationWizard:
self
.
create_vars
(
obj
.
account_info
)
self
.
show_finish_page
()
# Register plugin modules after successful registration
# Some plugins need the registered JID to function properly
app
.
plugin_manager
.
register_modules_for_account
(
obj
.
conn
)
if
self
.
update_progressbar_timeout_id
is
not
None
:
GLib
.
source_remove
(
self
.
update_progressbar_timeout_id
)
...
...
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