From d79fef0e9b17f47c81bf675da53239126822e599 Mon Sep 17 00:00:00 2001 From: Sebastian Landwehr Date: Thu, 25 Jun 2026 08:30:56 +0200 Subject: [PATCH] fix: add rss mime type to text types --- src/utils.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/utils.ts b/src/utils.ts index a773431b..51e1b1a6 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -45,6 +45,7 @@ export function isJSONSerializable(value: any): boolean { const textTypes = new Set([ "image/svg", "application/xml", + "application/rss+xml", "application/xhtml", "application/html", ]);