Merging is working

This commit is contained in:
Pierre HUBERT 2021-04-21 18:30:29 +02:00
parent bcfdb5ffee
commit f5557d81e0

View File

@ -59,7 +59,7 @@ class GroupPresencePage {
let curr = presences[i];
let next = presences[i + 1];
if(curr.userID != next.userID || curr.year != next.year || curr.month != next.month || curr.day != next.day - 1)
if(curr.userID != next.userID || curr.end.getTime() != next.date.getTime())
break;
curr.end = next.end;