Merge pull request #3660 from tgxworld/wrong_message_on_rate_limit

FIX: Rate limit message not shown.
This commit is contained in:
Robin Ward 2015-08-19 12:14:51 -04:00
commit 6d6b41dbcc
1 changed files with 3 additions and 1 deletions

View File

@ -504,7 +504,9 @@ const Composer = RestModel.extend({
return post.save(props).then(function(result) {
self.clearState();
return result;
}).catch(rollback);
}).catch(function(error) {
throw error;
});
}).catch(rollback);
},