Merge pull request #3659 from tgxworld/missing_error_messages_for_toggle

FIX: Missing error message when bookmark rate limit is hit.
This commit is contained in:
Arpit Jalan 2015-08-17 14:17:37 +05:30
commit 0ee0818b20
1 changed files with 2 additions and 2 deletions

View File

@ -233,8 +233,8 @@ export default Ember.Controller.extend(SelectedPostsCount, BufferedContent, {
}
if (post) {
return post.toggleBookmark().catch(function(error) {
if (error && error.responseText) {
bootbox.alert($.parseJSON(error.responseText).errors[0]);
if (error && error.jqXHR && error.jqXHR.responseText) {
bootbox.alert($.parseJSON(error.jqXHR.responseText).errors[0]);
} else {
bootbox.alert(I18n.t('generic_error'));
}