Changeset fa1bc1d
- Timestamp:
- 2018-07-31T04:57:16Z (6 years ago)
- Branches:
- master
- Children:
- 3b0c1c3
- Parents:
- 9767d03
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
irc_im.c
r9767d03 rfa1bc1d 232 232 GSList *l; 233 233 234 if (sent_at > 0 && set_getbool(&irc->b->set, "display_timestamps")) { 234 if (sent_at > 0 && 235 !(irc->caps & CAP_SERVER_TIME) && 236 set_getbool(&irc->b->set, "display_timestamps")) { 235 237 ts = irc_format_timestamp(irc, sent_at); 236 238 } … … 702 704 } 703 705 704 if (sent_at > 0 && set_getbool(&bee->set, "display_timestamps")) { 706 if (sent_at > 0 && 707 !(irc->caps & CAP_SERVER_TIME) && 708 set_getbool(&bee->set, "display_timestamps")) { 705 709 ts = irc_format_timestamp(irc, sent_at); 706 710 }
Note: See TracChangeset
for help on using the changeset viewer.