add nullcheck for this or sites without ppd will be NaN

indiachan-spamvector
Thomas Lynch 3 years ago
parent 7033b13e5d
commit 4fd69af2e6
  1. 4
      schedules/tasks/webring.js

@ -61,7 +61,9 @@ module.exports = {
//convert to numbers because old infinity webring plugin returns string
board.sequence_value = parseInt(board.totalPosts);
board.pph = parseInt(board.postsPerHour);
board.ppd = parseInt(board.postsPerDay);
if (board.postsPerDay != null) {
board.ppd = parseInt(board.postsPerDay);
}
board.ips = parseInt(board.uniqueUsers);
board.settings = {
sfw: !board.nsfw,

Loading…
Cancel
Save