hotfix: fixes missing function argument

This commit is contained in:
@wwwjim 2020-08-10 22:19:02 -07:00
parent 2044b11803
commit 36fcc38bdc

View File

@ -38,7 +38,7 @@ export const getIdFromCookie = (req) => {
return id;
};
export const encryptPassword = async (text) => {
export const encryptPassword = async (text, salt) => {
if (!text) {
return null;
}