precache_headlines: fix typo which caused 2 requests of same feed
This commit is contained in:
parent
8514e925ab
commit
0670a2a71d
1 changed files with 1 additions and 1 deletions
|
@ -2083,7 +2083,7 @@ function precache_headlines() {
|
|||
if (nuf && !cache_get("feed:" + nuf + ":" + activeFeedIsCat()))
|
||||
viewfeed(nuf, '', activeFeedIsCat(), 0, true);
|
||||
|
||||
if (nf != nuf && nf && !cache_get("feed:" + nf[0] + ":" + nf[1]))
|
||||
if (nf && nf[0] != nuf && !cache_get("feed:" + nf[0] + ":" + nf[1]))
|
||||
viewfeed(nf[0], '', nf[1], 0, true);
|
||||
|
||||
window.setTimeout(function() {
|
||||
|
|
Loading…
Reference in a new issue