Fix circles feed bug not showing your posts

This commit is contained in:
Kevin Froman 2019-09-20 20:41:06 -05:00
parent 4187aba570
commit ccc30f68d6
1 changed files with 2 additions and 1 deletions

View File

@ -111,7 +111,8 @@ function appendMessages(msg, blockHash, beforeHash){
}
else{
//feed.insertAfter(clone, beforeEl)
beforeEl.insertAdjacentElement("beforebegin", clone)
console.log(clone)
beforeEl.insertAdjacentElement("beforebegin", clone.children[0])
}
}