From a36854b4d9f5646167b285c5ab7f103db500193a Mon Sep 17 00:00:00 2001 From: dangered wolf Date: Fri, 17 Nov 2023 18:48:20 -0500 Subject: [PATCH] Workaround typing quirks from dependency update --- src/embed/status.ts | 4 ++-- src/user.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/embed/status.ts b/src/embed/status.ts index 8a4e5ea..14d56e5 100644 --- a/src/embed/status.ts +++ b/src/embed/status.ts @@ -10,7 +10,7 @@ import { renderInstantView } from '../render/instantview'; import { constructTwitterThread } from '../providers/twitter/conversation'; export const returnError = (c: Context, error: string): Response => { - return c.text( + return c.html( Strings.BASE_HTML.format({ lang: '', headers: [ @@ -18,7 +18,7 @@ export const returnError = (c: Context, error: string): Response => { `` ].join('') }) - ); + ) as Response; }; /* Handler for Twitter statuses (Tweets). Like Twitter, we use the terminologies interchangably. */ diff --git a/src/user.ts b/src/user.ts index 256ead3..71d6503 100644 --- a/src/user.ts +++ b/src/user.ts @@ -12,7 +12,7 @@ export const returnError = (c: Context, error: string): Response => { `` ].join('') }) - ); + ) as Response; }; /* Handler for Twitter users */