Update autoblockPublishMiddleware.js #732

Merged
skhameneh merged 2 commits from fix-ban-path into master 2018-11-12 21:21:18 +01:00
Showing only changes of commit 887a86e927 - Show all commits

View file

@ -2,7 +2,7 @@ const fs = require('fs');
const logger = require('winston'); const logger = require('winston');
const { publishing: { publishingChannelWhitelist } } = require('@config/siteConfig'); const { publishing: { publishingChannelWhitelist } } = require('@config/siteConfig');
const ipBanFile = './config/ipBan.txt'; const ipBanFile = './site/config/ipBan.txt';
const forbiddenMessage = '<h1>Forbidden</h1>If you are seeing this by mistake, please contact us using <a href="https://chat.lbry.io/">https://chat.lbry.io/</a>'; const forbiddenMessage = '<h1>Forbidden</h1>If you are seeing this by mistake, please contact us using <a href="https://chat.lbry.io/">https://chat.lbry.io/</a>';
let ipCounts = {}; let ipCounts = {};