Skip to content

Commit 7419a8d

Browse files
committed
Fix: /feed.atom missing the reference to buildAllPackagesAtomFeedContent method.
1 parent af61083 commit 7419a8d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

app/lib/frontend/handlers/atom_feed.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ import '../dom/dom.dart' as d;
1919

2020
/// Handles requests for /feed.atom
2121
Future<shelf.Response> atomFeedHandler(shelf.Request request) async {
22-
final feedContent = await cache.atomFeedXml().get();
22+
final feedContent =
23+
await cache.atomFeedXml().get(buildAllPackagesAtomFeedContent);
2324
return shelf.Response.ok(
2425
feedContent,
2526
headers: {

0 commit comments

Comments
 (0)