@baris said in plugins.browsingUsers.getBrowsingUsers error:
@crazycells Yeah it could be since each topic page calls the browsing users plugin. Give it a try with fewer tabs if it stops happening that's probably why.
Thanks a lot 👍
I noticed that threads weren't automatically retrieving new posts, so I checked the console and found these errors:
Uncaught TypeError: Cannot read property 'bind' of undefined (nodebb.min.js). The prettified function causing this error is below and the error occurs on the line with t.bind()
function p() {
require(["search", "mousetrap"], function(e, t) {
$(".topic-search").on("click", ".prev", function() {
e.topicDOM.prev()
}).on("click", ".next", function() {
e.topicDOM.next()
});
t.bind("ctrl+f", function(e) {
if (config.topicSearchEnabled) {
var t = ajaxify.currentPage.match(/^topic\/([\d]+)/), n;
if (t) {
e.preventDefault();
n = t[1];
$("#search-fields input").val("in:topic-" + n + " ");
app.prepareSearch()
}
}
})
})
}
I just did a fresh server rebuild, so maybe I screwed something up, or maybe this has been happening for a while and I didn't notice.