#185 in reply id
This commit is contained in:
parent
3243602653
commit
87aee3764b
|
@ -148,10 +148,17 @@ function post(mode, postvis) {
|
|||
}
|
||||
}
|
||||
console.table(toot)
|
||||
if($('#ideKey').val() != ''){
|
||||
var ideKey = $('#ideKey').val()
|
||||
} else {
|
||||
var ideKey = Date.now() + '/' + Math.random().toString(32).substring(2)
|
||||
$('#ideKey').val(ideKey)
|
||||
}
|
||||
var httpreq = new XMLHttpRequest()
|
||||
httpreq.open('POST', start, true)
|
||||
httpreq.setRequestHeader('Content-Type', 'application/json')
|
||||
httpreq.setRequestHeader('Authorization', 'Bearer ' + at)
|
||||
httpreq.setRequestHeader('Idempotency-Key', ideKey)
|
||||
httpreq.responseType = 'json'
|
||||
httpreq.send(JSON.stringify(toot))
|
||||
httpreq.onreadystatechange = function() {
|
||||
|
@ -159,6 +166,8 @@ function post(mode, postvis) {
|
|||
var json = httpreq.response
|
||||
if (this.status !== 200) {
|
||||
setLog(start, this.status, json)
|
||||
} else {
|
||||
$('#ideKey').val('')
|
||||
}
|
||||
var box = localStorage.getItem('box')
|
||||
if (box == 'yes' || !box) {
|
||||
|
@ -255,6 +264,7 @@ function misskeyPost() {
|
|||
//クリア(Shift+C)
|
||||
function clear() {
|
||||
$('#textarea').val('')
|
||||
$('#ideKey').val('')
|
||||
if (localStorage.getItem('stable')) {
|
||||
$('#textarea').val('#' + localStorage.getItem('stable') + ' ')
|
||||
}
|
||||
|
|
|
@ -454,6 +454,9 @@ function redraft(id, acct_id) {
|
|||
$('#nsfw').html('visibility')
|
||||
$('#nsfw').addClass('nsfw-avail')
|
||||
}
|
||||
if(json.in_reply_to_id){
|
||||
$('#reply').val(json.in_reply_to_id)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -258,6 +258,7 @@
|
|||
</ul>
|
||||
<!--hidden area-->
|
||||
<input type="hidden" id="reply">
|
||||
<input type="hidden" id="ideKey">
|
||||
<input type="hidden" id="quote">
|
||||
<input type="hidden" id="media">
|
||||
<!--END hidden area-->
|
||||
|
|
Loading…
Reference in New Issue
Block a user