Only update favorite icon if the operation was successful

Also shows a notification in case an error occured on updating the tags
This commit is contained in:
Joas Schilling 2015-01-26 10:45:49 +01:00
parent 359abca50c
commit df75a6e5f3
1 changed files with 3 additions and 1 deletions

View File

@ -105,12 +105,12 @@
} else {
tags.push(OC.TAG_FAVORITE);
}
toggleStar($actionEl, !isFavorite);
self.applyFileTags(
dir + '/' + fileName,
tags
).then(function(result) {
toggleStar($actionEl, !isFavorite);
// response from server should contain updated tags
var newTags = result.tags;
if (_.isUndefined(newTags)) {
@ -171,6 +171,8 @@
}),
dataType: 'json',
type: 'POST'
}).fail(function() {
OC.Notification.showTemporary(t('files', 'An error occurred while trying to update the tags'));
});
}
};