Merge branch 'fix/double-post-with-ctrl-enter' into 'develop'

Don't allow posting again while previous hasn't returned

See merge request !103
This commit is contained in:
Shpuld Shpuldson 2017-08-22 05:41:05 -04:00
commit 9ec4412894

View file

@ -87,6 +87,7 @@ const PostStatusForm = {
this.caret = selectionStart
},
postStatus (newStatus) {
if (this.posting) { return }
this.posting = true
statusPoster.postStatus({
status: newStatus.status,