mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-10-27 17:16:14 +01:00
if there is no postData.tid dont notify, ie topic post
This commit is contained in:
@@ -93,14 +93,14 @@ SocketModules.composer.renderHelp = function(socket, data, callback) {
|
||||
};
|
||||
|
||||
SocketModules.composer.notifyTyping = function(socket, data) {
|
||||
if (!socket.uid) {
|
||||
if (!socket.uid || !parseInt(data.tid, 10)) {
|
||||
return;
|
||||
}
|
||||
server.in('topic_' + data.tid).emit('event:topic.notifyTyping', data);
|
||||
};
|
||||
|
||||
SocketModules.composer.stopNotifyTyping = function(socket, data) {
|
||||
if (!socket.uid) {
|
||||
if (!socket.uid || !parseInt(data.tid, 10)) {
|
||||
return;
|
||||
}
|
||||
server.in('topic_' + data.tid).emit('event:topic.stopNotifyTyping', data);
|
||||
|
||||
Reference in New Issue
Block a user