Fixed mass tag
This commit is contained in:
parent
4b27b8a85d
commit
728d1d65de
1 changed files with 1 additions and 1 deletions
|
@ -219,7 +219,7 @@ App.Presenters.PostListPresenter = function(
|
|||
var formData = {};
|
||||
formData.seenEditTime = post.lastEditTime;
|
||||
formData.tags = tags.join(' ');
|
||||
promise.wait(api.put('/posts/' + post.id, formData))
|
||||
promise.wait(api.post('/posts/' + post.id, formData))
|
||||
.then(function(response) {
|
||||
post = response.json;
|
||||
$post.data('post', post);
|
||||
|
|
Loading…
Reference in a new issue