Browse Source

secure a sequence order of splitted twists sending

readme-update
Simon Grim 6 years ago
parent
commit
37fad362ee
  1. 3
      js/interface_common.js

3
js/interface_common.js

@ -2467,7 +2467,8 @@ function postSubmit(e, oldLastPostId) {
if (splitedPostsCount > 1) { if (splitedPostsCount > 1) {
if (textArea.length < splitedPostsCount) { if (textArea.length < splitedPostsCount) {
//current part will be sent as reply to the previous part... //current part will be sent as reply to the previous part...
postData = $('<div data-id="' + lastPostId + '" data-screen-name="' + defaultScreenName postData = $('<div data-id="' + (oldLastPostId + 1).toString() // (lastPostId - oldLastPostId) may be more than 1 because of an async nature of getting of the confirmation of sending
+ '" data-screen-name="' + defaultScreenName
+ '" data-reply-part-id="' + (splitedPostsCount - textArea.length).toString() + '" data-reply-part-id="' + (splitedPostsCount - textArea.length).toString()
+ '"></div>'); + '"></div>');
} }

Loading…
Cancel
Save