add fallback for headlines-unread element when ccache has no data
This commit is contained in:
parent
cfcb7d4276
commit
696a6850db
|
@ -321,7 +321,12 @@
|
||||||
print "<vgroup-last-feed value=\"$vgroup_last_feed\"/>";
|
print "<vgroup-last-feed value=\"$vgroup_last_feed\"/>";
|
||||||
|
|
||||||
$headlines_unread = ccache_find($link, $returned_feed, $_SESSION["uid"],
|
$headlines_unread = ccache_find($link, $returned_feed, $_SESSION["uid"],
|
||||||
$cat_view);
|
$cat_view, true);
|
||||||
|
|
||||||
|
if ($headlines_unread == -1) {
|
||||||
|
$headlines_unread = getFeedUnread($link, $returned_feed, $cat_view);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
print "<headlines-unread value=\"$headlines_unread\"/>";
|
print "<headlines-unread value=\"$headlines_unread\"/>";
|
||||||
printf("<disable-cache value=\"%d\"/>", $disable_cache);
|
printf("<disable-cache value=\"%d\"/>", $disable_cache);
|
||||||
|
|
Loading…
Reference in New Issue