mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
Merge pull request #2752 from overleaf/ta-notifications-mark-as-read-fix
Fix `markAsRead` Calls GitOrigin-RevId: 89609251a082adb825522141864cd3f44315ae45
This commit is contained in:
parent
533b395210
commit
ac1a7c4c52
1 changed files with 2 additions and 2 deletions
|
@ -39,7 +39,7 @@ module.exports = {
|
|||
if (callback == null) {
|
||||
callback = function() {}
|
||||
}
|
||||
return NotificationsHandler.markAsRead(this.key, callback)
|
||||
return NotificationsHandler.markAsReadByKeyOnly(this.key, callback)
|
||||
}
|
||||
}
|
||||
},
|
||||
|
@ -66,7 +66,7 @@ module.exports = {
|
|||
if (callback == null) {
|
||||
callback = function() {}
|
||||
}
|
||||
return NotificationsHandler.markAsRead(this.key, callback)
|
||||
return NotificationsHandler.markAsReadByKeyOnly(this.key, callback)
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue