From 0543a6353062fe9b13ae3743f6a317fd7c860a97 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Thu, 29 Oct 2020 00:48:18 -0400 Subject: [PATCH] Fix non-existent reference in screenshot --- 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 2af8583f..c0cc6bcf 100644 --- a/commands/other/screenshot.js +++ b/commands/other/screenshot.js @@ -63,6 +63,6 @@ module.exports = class ScreenshotCommand extends Command { this.pornList = text.split('\n') .filter(site => site && !site.startsWith('#')) .map(site => site.replace(/^(0.0.0.0 )/, '')); // eslint-disable-line no-control-regex - return this.postList; + return this.pornList; } };