Re: Migrated to a new forum system
Reply #229 –
Not weird when you consider that people have only posted in about 12 topics in the last 24 hours, if that many.
Which now takes two clicks to get to.
Fixed it for me with a Greasemonkey-script:
// ==UserScript==
// @name hydrogenaudio unread
// @namespace hydro-forum-fix
// @include https://hydrogenaud.io/*
// @version 1
// @grant none
// ==/UserScript==
var els = document.getElementsByTagName("A");
for(var i = 0, l = els.length; i < l; i++) {
var el = els[i];
el.href = el.href.replace(/hydrogenaud.io\/index.php\?action\=unread$/ig, 'hydrogenaud.io\/index.php\?action\=unread\;all\;start=0');
}