From d042b63ca82727f6d8f80f7d6edba3dc01f33fa0 Mon Sep 17 00:00:00 2001 From: pseudoyu Date: Tue, 26 Nov 2024 23:08:57 +0800 Subject: [PATCH] fix(api): rss3 network format --- lib/views/rss3.test.ts | 2 +- lib/views/rss3.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/views/rss3.test.ts b/lib/views/rss3.test.ts index de8cb65b972b7d..52518b99e69472 100644 --- a/lib/views/rss3.test.ts +++ b/lib/views/rss3.test.ts @@ -1,7 +1,7 @@ import { describe, expect, it } from 'vitest'; import rss3 from './rss3'; -const NETWORK = 'RSS'; +const NETWORK = 'rsshub'; const TAG = 'RSS'; const TYPE = 'feed'; diff --git a/lib/views/rss3.ts b/lib/views/rss3.ts index eb5c27613b72c6..0e7c9734f09d6a 100644 --- a/lib/views/rss3.ts +++ b/lib/views/rss3.ts @@ -6,7 +6,7 @@ import dayjs from 'dayjs'; * @returns `JSON.stringify`-ed [UMS Result](https://docs.rss3.io/docs/unified-metadata-schemas) */ -const NETWORK = 'RSS'; +const NETWORK = 'rsshub'; const TAG = 'RSS'; const TYPE = 'feed';