move config editor in index, fix circles showing posts under wrong circle

This commit is contained in:
Kevin Froman 2019-10-10 02:25:12 -05:00
parent a704eaaf60
commit f0c72ef1c8
3 changed files with 18 additions and 18 deletions

View file

@ -51,7 +51,8 @@ fetch('/flow/version', {
document.getElementById('circlesVersion').innerText = data
})
function appendMessages(msg, blockHash, beforeHash){
function appendMessages(msg, blockHash, beforeHash, channel){
if (channel !== document.getElementById('feedIDInput').value){return}
var humanDate = new Date(0)
if (msg.length == 0){
return
@ -161,12 +162,12 @@ function getBlocks(){
continue
}
requested.push(blockList[i])
loadMessage(blockList[i], blockList, i)
loadMessage(blockList[i], blockList, i, ch)
}
}
}
function loadMessage(blockHash, blockList, count){
function loadMessage(blockHash, blockList, count, channel){
fetch('/getblockdata/' + blockHash, {
method: 'GET',
headers: {
@ -187,7 +188,7 @@ function loadMessage(blockHash, blockList, count){
}
}
}
setTimeout(function(){appendMessages(data, blockHash, before)}, delay)
setTimeout(function(){appendMessages(data, blockHash, before, channel)}, delay)
//appendMessages(data, blockHash, before)
})
}