From 323e3f5fcbc25eeabbceadadf87ae4bc1aca3d96 Mon Sep 17 00:00:00 2001 From: Bamboo-King Date: Sun, 26 Jan 2025 01:31:27 +0000 Subject: [PATCH] make search string more readable --- rsshub/spiders/asmr/works.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rsshub/spiders/asmr/works.py b/rsshub/spiders/asmr/works.py index 99034c5..0f85e21 100644 --- a/rsshub/spiders/asmr/works.py +++ b/rsshub/spiders/asmr/works.py @@ -37,7 +37,7 @@ def ctx(search='', order='create_date', subtitle=0, sort='desc'): res = requests.get(top_url).json() return { - 'title': f'ASMR - {unquote(search)}', + 'title': f'ASMR{"-" + unquote(search) if search != "" else ""}', 'link': top_url, 'description': 'ASMR Search Subscription', 'author': 'Bamboo_King',