Fix notify_pointer_update notifying on the wrong user's pointer.

(imported from commit 4b50fa7da7d1de4e478f222f284ab6ba35db9899)
This commit is contained in:
Tim Abbott 2012-12-31 17:19:59 -05:00
parent dd99f0ceb8
commit 384e64aaf5
1 changed files with 1 additions and 1 deletions

View File

@ -244,7 +244,7 @@ def update_pointer_backend(request, user_profile, updater,
if settings.TORNADO_SERVER:
requests.post(settings.TORNADO_SERVER + '/notify_pointer_update', data=dict(
secret = settings.SHARED_SECRET,
user = user_profile.user.id,
user = user_profile.id,
new_pointer = pointer,
pointer_updater = updater))