mirror of https://github.com/zulip/zulip.git
pointer: Fix pointer update.
Commit d17b577d0c
(#13321) incorrectly
transformed this line, even though I thought my script had a specific
guard against this.
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
This commit is contained in:
parent
447f74ae63
commit
d577537304
|
@ -29,7 +29,7 @@ function update_pointer() {
|
|||
return channel.post({
|
||||
url: '/json/users/me/pointer',
|
||||
idempotent: true,
|
||||
data: {exports: exports.furthest_read},
|
||||
data: {pointer: exports.furthest_read},
|
||||
success: function () {
|
||||
exports.server_furthest_read = exports.furthest_read;
|
||||
pointer_update_in_flight = false;
|
||||
|
|
Loading…
Reference in New Issue