1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-07-01 17:17:46 +02:00

Make "Last seen" handle year rollover correctly

This commit is contained in:
Anthony Parsons 2015-01-01 05:39:36 +00:00
parent 4365b8d5ad
commit e722b665d1
No known key found for this signature in database
GPG Key ID: F078B26D8B56DF15

View File

@ -975,7 +975,10 @@ static void friendlist_onDraw(ToxWindow *self, Tox *m)
uint64_t last_seen = Friends.list[f].last_online.last_on;
if (last_seen != 0) {
int day_dist = (cur_loc_tm.tm_yday - Friends.list[f].last_online.tm.tm_yday) % 365;
int day_dist = (
cur_loc_tm.tm_yday - Friends.list[f].last_online.tm.tm_yday
+ ((cur_loc_tm.tm_year - Friends.list[f].last_online.tm.tm_year) * 365)
) % 365;
const char *hourmin = Friends.list[f].last_online.hour_min_str;
switch (day_dist) {