0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-20 22:42:53 -05:00

Fix forge returning null on empty fetch

Closes #184. It got broken because of a9c4a5409e
This commit is contained in:
Gabor Javorszky 2013-06-22 12:25:43 +01:00
parent bc3b8541ab
commit e40eb12a51

View file

@ -74,9 +74,9 @@
*/
return this.forge().fetch().then(function (user) {
_.each(user.attributes, function (value, key, list) {
if (user) {
fail = true;
});
}
if (fail) {
return when.reject(new Error('A user is already registered. Only one user for now!'));
@ -167,4 +167,4 @@
Users: Users
};
}());
}());