another syntax fixes

This commit is contained in:
Shamil Mingaliev 2019-12-13 17:10:11 +03:00
parent 13315b8b72
commit 33efab6eea

View file

@ -14,8 +14,8 @@ let _ = require('./translate')._;
let util = require('util');
let createDOMPurify = require('dompurify');
let htmlToText = require('html-to-text');
let crypto = require('crypto')
let process = require('process')
let crypto = require('crypto');
let process = require('process');
let blockedUsers = ['abuse', 'admin', 'billing', 'compliance', 'devnull', 'dns', 'ftp', 'hostmaster', 'inoc', 'ispfeedback', 'ispsupport', 'listrequest', 'list', 'maildaemon', 'noc', 'noreply', 'noreply', 'null', 'phish', 'phishing', 'postmaster', 'privacy', 'registrar', 'root', 'security', 'spam', 'support', 'sysadmin', 'tech', 'undisclosedrecipients', 'unsubscribe', 'usenet', 'uucp', 'webmaster', 'www'];
@ -333,6 +333,6 @@ function artstationMergeTags(subscription) {
return {
ENCRYPTED_EMAIL: encrypted_email,
IV: iv.toString('hex'),
IV: iv.toString('hex')
};
}