From 2c21d5c05bff27d57ea26d71b613905df3321587 Mon Sep 17 00:00:00 2001 From: coderaiser Date: Mon, 10 Nov 2014 05:56:35 -0500 Subject: [PATCH] refactor(rest) files.namesAll -> data --- lib/server/rest.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/server/rest.js b/lib/server/rest.js index 73b1fc7e..5a16e568 100644 --- a/lib/server/rest.js +++ b/lib/server/rest.js @@ -321,9 +321,9 @@ files.from = mellow.convertPath(files.from); files.to = mellow.convertPath(files.to); - files.namesAll = Util.slice(files.names); + data = Util.slice(files.names); copyFiles(files, flop.copy, function(error) { - var msg = formatMsg('copy', files.namesAll); + var msg = formatMsg('copy', data); callback(error, msg); });