dont markAsRead for guests

v1.18.x
barisusakli 10 years ago
parent e7a52b615b
commit 510343b9d5

@ -202,7 +202,9 @@ define('forum/topic/posts', [
done();
});
} else {
socket.emit('topics.markAsRead', [tid]);
if (app.uid) {
socket.emit('topics.markAsRead', [tid]);
}
navigator.update();
done();
}

Loading…
Cancel
Save