added fileFetchedAt to TickerPageResponse and updated the Ticker UI to use it as the data currency timestamp for proxied files

This commit is contained in:
2026-07-13 00:32:27 +02:00
parent 2f5a6b4ce0
commit 15791423ea
3 changed files with 12 additions and 1 deletions
@@ -94,7 +94,9 @@ class _TickerPageContentState extends State<_TickerPageContent> {
case TickerPageKind.proxiedFile:
return Column(
children: [
TickerUpdatedBar(publishedAt: page.publishedAt),
// For proxied files the data currency is the last successful
// proxy fetch, not the page's publish date.
TickerUpdatedBar(publishedAt: page.fileFetchedAt ?? page.publishedAt),
Expanded(
child: _ProxiedFileView(
repo: context.read<TickerPageBloc>().repo,