Convert max_memory setting to string

This commit is contained in:
John Furrow
2016-06-27 21:46:50 -07:00
parent 946181767a
commit eda694be0a
+1 -1
View File
@@ -252,7 +252,7 @@ var client = {
piecesMemoryMax: (userInput) => {
return {
id: userInput.id,
data: Number(userInput.data) * 1024 * 1024
data: (Number(userInput.data) * 1024 * 1024).toString()
};
}
};