You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
rename add_devices to set_devicesbecause this is what the method actually does. Helps to prevent confusion.
rename add_own_devices to set_own_devices (same reason as above)
create a new method call add_device(jid, deviceId) (Should not duplicate device ids in the array. Ie treat the array as a set)
In decrypt_msg call add_device with sender_jid and sid
Somewhere in init (before we connect to a server) add all recipient_id, device_id combos from the litesessionstore to the device_ids array (basically calling set_devices)
The text was updated successfully, but these errors were encountered:
The issue and the cause is described here: omemo/gajim-omemo#50
Steps to circumvent the problem include:
add_devices
toset_devices
because this is what the method actually does. Helps to prevent confusion.add_own_devices
toset_own_devices
(same reason as above)add_device(jid, deviceId)
(Should not duplicate device ids in the array. Ie treat the array as a set)decrypt_msg
calladd_device
with sender_jid and sidThe text was updated successfully, but these errors were encountered: