Fix lint.

This commit is contained in:
Lauri Ojansivu 2021-03-02 16:08:29 +02:00
parent 3605072650
commit 0aabb0b364
4 changed files with 6 additions and 4 deletions

View file

@ -153,7 +153,7 @@ if (Meteor.isServer) {
// At Sandstorm, Admin Panel has SMTP settings
const newSetting = Settings.findOne();
if (!process.env.MAIL_URL && newSetting.mailUrl())
process.env.MAIL_URL = newSetting.mailUrl();
process.env.MAIL_URL = newSetting.mailUrl();
Accounts.emailTemplates.from = process.env.MAIL_FROM
? process.env.MAIL_FROM
: newSetting.mailServer.from;

View file

@ -184,7 +184,7 @@ function pickleValue(value) {
if (value === null) {
return null;
} else if (typeof value === 'object') {
switch(value.constructor.name) {
switch (value.constructor.name) {
case 'RegExp':
return {
$$class: 'RegExp',