You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 6, 2022. It is now read-only.
On my system the call history is sorted in a wrong order! It is completely out of order, call from yesterday, today, 3 days ago, yesterday, and so on.
Setup: FritzBox 7390 with current firmware, German language...
I changed the sortHistory function, now it works for me:
sortHistory: function() {
var history = this.callHistory;
//Sort history by time
history.sort(function(a, b) {
return new Date(b.time) - new Date(a.time);
});
this.callHistory = history;
},
The text was updated successfully, but these errors were encountered:
On my system the call history is sorted in a wrong order! It is completely out of order, call from yesterday, today, 3 days ago, yesterday, and so on.
Setup: FritzBox 7390 with current firmware, German language...
I changed the sortHistory function, now it works for me:
The text was updated successfully, but these errors were encountered: