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:
Anders Kaseorg 2019-10-30 11:45:47 -07:00
parent 447f74ae63
commit d577537304
1 changed files with 1 additions and 1 deletions

View File

@ -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;