Skip to content

Commit

Permalink
root cause fix for 9dbb0ed
Browse files Browse the repository at this point in the history
  • Loading branch information
owocki committed Apr 8, 2019
1 parent 605dd55 commit bc8a8f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/dashboard/router.py
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ def get_queryset(self):
# save search history, but only not is_featured
if 'is_featured' not in param_keys:
if self.request.user and self.request.user.is_authenticated:
data['nonce'] = int(time.time() / 1000)
data['nonce'] = int(time.time() * 1000000)
try:
SearchHistory.objects.update_or_create(
user=self.request.user,
Expand Down

0 comments on commit bc8a8f1

Please sign in to comment.