diff options
author | James Booth <boothj5@gmail.com> | 2013-08-04 17:05:47 +0100 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2013-08-04 17:05:47 +0100 |
commit | 87c627710906171b3696e65fac985bd50c43c6f3 (patch) | |
tree | 0e4abf6afbaf2f3b754d288f5e50adaadc39b4a1 /src | |
parent | 51b2137705b99ad45a8d4d646da9f3f8e2b3b4db (diff) | |
parent | e170965c93ae838f3eff00f7558de5186268dd8b (diff) | |
download | profani-tty-87c627710906171b3696e65fac985bd50c43c6f3.tar.gz |
Merge branch 'master' into nextdev
Diffstat (limited to 'src')
-rw-r--r-- | src/ui/core.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/ui/core.c b/src/ui/core.c index 126fe127..83839952 100644 --- a/src/ui/core.c +++ b/src/ui/core.c @@ -399,10 +399,12 @@ ui_incoming_msg(const char * const from, const char * const message, if (tv_stamp == NULL) { win_print_time(window, '-'); } else { - // if show users status first, when receiving message via delayed delivery + // show users status first, when receiving message via delayed delivery if (win_created) { PContact pcontact = roster_get_contact(from); - win_show_contact(window, pcontact); + if (pcontact != NULL) { + win_show_contact(window, pcontact); + } } GDateTime *time = g_date_time_new_from_timeval_utc(tv_stamp); gchar *date_fmt = g_date_time_format(time, "%H:%M:%S"); |