ESlint radix

This commit is contained in:
Peter Jaszkowiak
2017-02-18 14:29:52 -07:00
parent 09e868ce5f
commit 57f89663aa
11 changed files with 12 additions and 12 deletions

View File

@@ -25,7 +25,7 @@ editController.get = function (req, res, callback) {
userData.maximumSignatureLength = parseInt(meta.config.maximumSignatureLength, 10) || 255;
userData.maximumAboutMeLength = parseInt(meta.config.maximumAboutMeLength, 10) || 1000;
userData.maximumProfileImageSize = parseInt(meta.config.maximumProfileImageSize, 10);
userData.allowProfileImageUploads = parseInt(meta.config.allowProfileImageUploads) === 1;
userData.allowProfileImageUploads = parseInt(meta.config.allowProfileImageUploads, 10) === 1;
userData.allowAccountDelete = parseInt(meta.config.allowAccountDelete, 10) === 1;
userData.groups = userData.groups.filter(function (group) {