Merge pull request #708 from pmelanson/705-read-marker-update-after-date-change
#705 increment buffer.lastSeen on date change message
This commit is contained in:
commit
1e84292208
1 changed files with 1 additions and 0 deletions
|
@ -29,6 +29,7 @@ weechat.factory('handlers', ['$rootScope', '$log', 'models', 'plugins', 'notific
|
||||||
new_date.setHours(0, 0, 0, 0);
|
new_date.setHours(0, 0, 0, 0);
|
||||||
// Check if the date changed
|
// Check if the date changed
|
||||||
if (old_date.valueOf() !== new_date.valueOf()) {
|
if (old_date.valueOf() !== new_date.valueOf()) {
|
||||||
|
++buffer.lastSeen
|
||||||
var old_date_plus_one = old_date;
|
var old_date_plus_one = old_date;
|
||||||
old_date_plus_one.setDate(old_date.getDate() + 1);
|
old_date_plus_one.setDate(old_date.getDate() + 1);
|
||||||
// it's not always true that a date with time 00:00:00
|
// it's not always true that a date with time 00:00:00
|
||||||
|
|
Loading…
Reference in a new issue