1
0
Fork 0

🐛 Make sub popup accurate when viewing a text feed

This commit is contained in:
makeworld 2020-12-09 22:52:35 -05:00
parent ecf229d3dc
commit 39290b09c6
1 changed files with 1 additions and 1 deletions

View File

@ -244,7 +244,7 @@ func handleURL(t *tab, u string, numRedirects int) (string, bool) {
feed, isFeed := getFeedFromPage(p)
if isFeed && isValidTab(t) && t.page == p {
// After parsing and track-checking time, the page is still being displayed
addFeedDirect(p.URL, feed, false)
addFeedDirect(p.URL, feed, subscriptions.IsSubscribed(p.URL))
}
}
}(t.page)