aboutsummaryrefslogtreecommitdiff
path: root/services/feed/feed.hooks.ts
diff options
context:
space:
mode:
Diffstat (limited to 'services/feed/feed.hooks.ts')
-rw-r--r--services/feed/feed.hooks.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/services/feed/feed.hooks.ts b/services/feed/feed.hooks.ts
index 54f6d61..6bff8dc 100644
--- a/services/feed/feed.hooks.ts
+++ b/services/feed/feed.hooks.ts
@@ -7,7 +7,7 @@ const raiseNewVerifedPolls = async (context: HookContext): Promise<HookContext>
// Raise unseen verified polls to the very top
context.result = _.sortBy(
context.result,
- poll => !(poll.author.verified && !poll.userChoice)
+ poll => !(poll.author.verified && !poll.vote)
);
return context;
};
@@ -16,7 +16,7 @@ const lowerOldPolls = async (context: HookContext): Promise<HookContext> => {
// Move all seen polls down
context.result = _.sortBy(
context.result,
- poll => !!poll.userChoice
+ poll => !!poll.vote
);
return context;
};