diff options
author | fiaxh <git@mx.ax.lt> | 2017-11-06 01:02:13 +0100 |
---|---|---|
committer | fiaxh <git@mx.ax.lt> | 2017-11-16 14:09:30 +0100 |
commit | 1d0745177e7a116455811dfd26e07b848cb89b75 (patch) | |
tree | 7517c4b1e1fd932e22bff091c9eb93f1c1884b35 /libdino/src/service/conversation_manager.vala | |
parent | f6ac5bbd26638412a2289fd1d28ef12de1d7e8b5 (diff) | |
download | dino-1d0745177e7a116455811dfd26e07b848cb89b75.tar.gz dino-1d0745177e7a116455811dfd26e07b848cb89b75.zip |
Replace deprecated function usages
Diffstat (limited to 'libdino/src/service/conversation_manager.vala')
-rw-r--r-- | libdino/src/service/conversation_manager.vala | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libdino/src/service/conversation_manager.vala b/libdino/src/service/conversation_manager.vala index 471ec74a..44b16d68 100644 --- a/libdino/src/service/conversation_manager.vala +++ b/libdino/src/service/conversation_manager.vala @@ -34,6 +34,7 @@ public class ConversationManager : StreamInteractionModule, Object { public Conversation create_conversation(Jid jid, Account account, Conversation.Type? type = null) { assert(conversations.has_key(account)); if (conversations[account].has_key(jid)) { + conversations[account][jid].type_ = type; return conversations[account][jid]; } else { Conversation conversation = new Conversation(jid, account, type); |