Added chat_session_on_window_open

This commit is contained in:
James Booth
2014-12-28 23:56:48 +00:00
parent ac4b59eda0
commit 671ee0b876
3 changed files with 13 additions and 12 deletions

View File

@@ -277,6 +277,16 @@ chat_session_on_message_send(const char * const barejid)
return send_state;
}
void
chat_session_on_window_open(const char * const barejid)
{
if (prefs_get_boolean(PREF_STATES)) {
if (!chat_session_exists(barejid)) {
chat_session_new(barejid, TRUE);
}
}
}
static void
_chat_session_free(ChatSession *session)
{