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
Jens Korte
gajim-plugins
Commits
3b6d3b2d
Commit
3b6d3b2d
authored
May 20, 2018
by
Philipp Hörist
Browse files
[omemo] Dont try to use zeroconf account
parent
63dc147e
Changes
1
Hide whitespace changes
Inline
Side-by-side
omemo/omemoplugin.py
View file @
3b6d3b2d
...
...
@@ -179,12 +179,18 @@ class OmemoPlugin(GajimPlugin):
return
True
def
_message_received
(
self
,
conn
,
obj
,
callback
):
if
conn
.
name
==
'Local'
:
return
self
.
connections
[
conn
.
name
].
message_received
(
conn
,
obj
,
callback
)
def
_gc_encrypt_message
(
self
,
conn
,
obj
,
callback
):
if
conn
.
name
==
'Local'
:
return
self
.
connections
[
conn
.
name
].
gc_encrypt_message
(
conn
,
obj
,
callback
)
def
_encrypt_message
(
self
,
conn
,
obj
,
callback
):
if
conn
.
name
==
'Local'
:
return
self
.
connections
[
conn
.
name
].
encrypt_message
(
conn
,
obj
,
callback
)
def
_file_decryption
(
self
,
url
,
kind
,
instance
,
window
):
...
...
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