Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Maxime Buquet
poezio
Commits
0447188e
Commit
0447188e
authored
Jun 24, 2016
by
mathieui
Browse files
Limit 0184 receipts to one-to-one tabs
Instead of chat tabs, which include MUC which doesn’t implement that.
parent
158bb8c3
Changes
1
Hide whitespace changes
Inline
Side-by-side
poezio/core/handlers.py
View file @
0447188e
...
...
@@ -1078,9 +1078,10 @@ class HandlerCore:
if
not
msg_id
:
return
conversation
=
self
.
core
.
get_tab_by_name
(
jid
.
full
,
tabs
.
Chat
Tab
)
conversation
=
conversation
or
self
.
core
.
get_tab_by_name
(
jid
.
bare
,
tabs
.
Chat
Tab
)
conversation
=
self
.
core
.
get_tab_by_name
(
jid
.
full
,
tabs
.
OneToOne
Tab
)
conversation
=
conversation
or
self
.
core
.
get_tab_by_name
(
jid
.
bare
,
tabs
.
OneToOne
Tab
)
if
not
conversation
:
log
.
error
(
"Received ack from non-existing chat tab: %s"
,
jid
)
return
try
:
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment