diff options
author | Simon Bartlett <simon@securitycompass.com> | 2015-02-11 07:38:44 -0500 |
---|---|---|
committer | Simon Bartlett <simon@securitycompass.com> | 2015-02-11 07:38:44 -0500 |
commit | 459ec28c8641751a06c01f65986c2cb5c05fdac6 (patch) | |
tree | 6063e159be950ded4e1c7ffcfd6ce126dcde087e /app/core/files.js | |
parent | 332754a3ecc7b0cdbe6bb5da5639c2e25b9a97bd (diff) | |
download | lets-chat-459ec28c8641751a06c01f65986c2cb5c05fdac6.zip lets-chat-459ec28c8641751a06c01f65986c2cb5c05fdac6.tar.gz lets-chat-459ec28c8641751a06c01f65986c2cb5c05fdac6.tar.bz2 |
Fixed server error. Closes #211
Diffstat (limited to 'app/core/files.js')
-rw-r--r-- | app/core/files.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/core/files.js b/app/core/files.js index de57fa5..c0ce1f9 100644 --- a/app/core/files.js +++ b/app/core/files.js @@ -39,7 +39,7 @@ FileManager.prototype.create = function(options, cb) { return cb(err); } if (!room) { - return cb('No room found!'); + return cb('Room does not exist.'); } if (room.archived) { return cb('Room is archived.'); |