Fix non-existent reference in screenshot

This commit is contained in:
Dragon Fire
2020-10-29 00:48:18 -04:00
parent 7830bee5b5
commit 0543a63530
+1 -1
View File
@@ -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;
}
};