disabling pushUnreadCount for now, perhaps this might be good on redis too?

This commit is contained in:
psychobunny
2014-09-06 02:17:02 -04:00
parent 07376c9a4c
commit 099a04c1c8

View File

@@ -157,7 +157,12 @@ module.exports = function(Topics) {
}
Topics.pushUnreadCount = function(uids, callback) {
return;
if (typeof callback === 'function') {
return callback(null);
} else {
return null;
}
var websockets = require('./../socket.io');
if (!uids) {