Update feeds error language

This commit is contained in:
Sam Becker 2025-06-12 21:34:06 -05:00
parent bdfc122beb
commit 8b2d9d947e
2 changed files with 2 additions and 2 deletions

View File

@ -14,6 +14,6 @@ export async function GET() {
}); });
return Response.json(formatFeedJson(photos)); return Response.json(formatFeedJson(photos));
} else { } else {
return new Response('Feed disabled', { status: 404 }); return new Response('Feeds disabled', { status: 404 });
} }
} }

View File

@ -18,6 +18,6 @@ export async function GET() {
{ headers: { 'Content-Type': 'text/xml' } }, { headers: { 'Content-Type': 'text/xml' } },
); );
} else { } else {
return new Response('Feed disabled', { status: 404 }); return new Response('Feeds disabled', { status: 404 });
} }
} }