diff --git a/server/password-hash.js b/server/password-hash.js index fcebb1585..a34325e14 100644 --- a/server/password-hash.js +++ b/server/password-hash.js @@ -30,7 +30,7 @@ exports.verify = function (password, hash) { */ function isSHA1(hash) { return (typeof hash === "string" && hash.startsWith("sha1")); -}; +} /** * Does the hash need to be rehashed? @@ -38,4 +38,4 @@ function isSHA1(hash) { */ exports.needRehash = function (hash) { return isSHA1(hash); -}; \ No newline at end of file +};