Skip to content

Commit

Permalink
fix: lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
sshanzel authored Aug 8, 2024
1 parent 33f580d commit f798e72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/workers/postUpdated.ts
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ const createPost = async ({
data.score = Math.floor(postCreatedAt.getTime() / (1000 * 60));
data.origin = data?.scoutId
? PostOrigin.CommunityPicks
: data.origin ?? PostOrigin.Crawler;
: (data.origin ?? PostOrigin.Crawler);
data.visible = getPostVisible({ post: data });
data.visibleAt = data.visible ? postCreatedAt : null;
data.flags = {
Expand Down

0 comments on commit f798e72

Please sign in to comment.