From efd54a6e351ffa5ee539be5dda6f09d2ba63e610 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sun, 21 Jun 2020 17:44:17 -0400 Subject: [PATCH] Fix lint --- commands/other/screenshot.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } };