diff --git a/lib/routes/follow/profile.ts b/lib/routes/follow/profile.ts index a9d32f03a4f95..a136ef30bece6 100644 --- a/lib/routes/follow/profile.ts +++ b/lib/routes/follow/profile.ts @@ -4,7 +4,7 @@ import ofetch from '@/utils/ofetch'; import type { FollowResponse, Profile, Subscription } from './types'; export const route: Route = { - name: '订阅列表', + name: 'User subscriptions', path: '/profile/:uid', example: '/profile/41279032429549568', radar: [ @@ -27,7 +27,7 @@ async function handler(ctx: Context): Promise { const [profile, subscriptions] = await Promise.all([ofetch>(`${host}/profiles?id=${uid}`), ofetch>(`${host}/subscriptions?userId=${uid}`)]); return { - title: `${profile.data.name} - 订阅列表`, + title: `${profile.data.name} - User subscriptions`, item: subscriptions.data.map((subscription) => ({ title: subscription.feeds.title, description: subscription.feeds.description,