FIX: Rate limit message not shown.

This commit is contained in:
Guo Xiang Tan 2015-08-17 21:10:44 +08:00
parent 0ee0818b20
commit 80f36b81a6
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);
},