mail based rss feed aggregator
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

add `rss.is_fetching_paused`

ollie ad5dcb3c edbdf033

+6
+6
src/eater/feed/rss.gleam
··· 124 124 next_check: timestamp.system_time() |> timestamp.add(duration), 125 125 ) 126 126 } 127 + 128 + /// check whether fetching for a given `Location` is currently paused 129 + /// 130 + pub fn is_fetching_paused(feed: Location) { 131 + feed.repeated_failures > 10 132 + }