FIX: Errors raised for recovering post not being handled.

This commit is contained in:
Guo Xiang Tan 2015-08-19 10:44:32 +08:00
parent 019191a944
commit 33260f3203
1 changed files with 6 additions and 1 deletions

View File

@ -162,7 +162,9 @@ const Post = RestModel.extend({
// Recover a deleted post
recover() {
const post = this;
const post = this,
initProperties = post.getProperties('deleted_at', 'deleted_by', 'user_deleted', 'can_delete');
post.setProperties({
deleted_at: null,
deleted_by: null,
@ -178,6 +180,9 @@ const Post = RestModel.extend({
can_delete: true,
version: data.version
});
}).catch(function(error) {
popupAjaxError(error);
post.setProperties(initProperties);
});
},