Skip to content

Commit

Permalink
fix(feed): feed error ordering resolved
Browse files Browse the repository at this point in the history
  • Loading branch information
DEgITx committed Jul 18, 2018
1 parent a84f8c7 commit a442964
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/background/feed.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ module.exports = class Feed {
{
const rating = (x && x.good) || 0
const comments = 0
const time = Math.floor(Date.now() / 1000) - x.feedDate
let time = Math.floor(Date.now() / 1000) - x.feedDate

const maxTime = 600000
if(time > maxTime)
Expand Down

0 comments on commit a442964

Please sign in to comment.