1
0
mirror of https://github.com/makew0rld/amfora.git synced 2024-06-19 19:25:24 +00:00

🐛 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

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)