Running cargo update.

This commit is contained in:
Dessalines 2020-03-07 19:52:00 -05:00
parent ac280782b2
commit 5396cb2f5c
2 changed files with 524 additions and 549 deletions

1070
server/Cargo.lock generated vendored

File diff suppressed because it is too large Load diff

View file

@ -51,7 +51,6 @@ import {
createPostLikeFindRes,
editPostFindRes,
commentsToFlatNodes,
commentSortSortType,
setupTippy,
} from '../utils';
import { i18n } from '../i18next';
@ -649,9 +648,9 @@ export class Main extends Component<any, MainState> {
UserService.Instance.user.show_nsfw)
) {
this.state.posts.unshift(data.post);
this.setState(this.state);
}
}
this.setState(this.state);
} else if (res.op == UserOperation.EditPost) {
let data = res.data as PostResponse;
editPostFindRes(data, this.state.posts);