diff --git a/commands/other/screenshot.js b/commands/other/screenshot.js index 477cb6ab..a1bc9871 100644 --- a/commands/other/screenshot.js +++ b/commands/other/screenshot.js @@ -59,7 +59,7 @@ module.exports = class ScreenshotCommand extends Command { const { text } = await request.get('https://raw.githubusercontent.com/blocklistproject/Lists/master/porn.txt'); this.pornList = text.split('\n') .filter(url => url && !url.startsWith('#')) - .map(url => url.replace(/^(0.0.0.0 )/, '')); + .map(url => url.replace(/^(0.0.0.0 )/, '')); // eslint-disable-line no-control-regex return this.postList; } };