fix chat msg deletion

pull/105/head
Aevann 2023-01-29 11:27:47 +02:00
parent 477fc73632
commit ee66071ce1
1 changed files with 1 additions and 1 deletions

View File

@ -256,7 +256,7 @@ socket.on('typing', function (users){
function del(t) {
const chatline = t.parentElement.parentElement.parentElement.parentElement
const chatline = t.parentElement.parentElement.parentElement
socket.emit('delete', chatline.id);
chatline.remove()
}