Workaround typing quirks from dependency update

This commit is contained in:
dangered wolf 2023-11-17 18:48:20 -05:00
parent f7172ba275
commit a36854b4d9
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58
2 changed files with 3 additions and 3 deletions

View file

@ -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 => {
`<meta property="og:description" content="${error}"/>`
].join('')
})
);
) as Response;
};
/* Handler for Twitter statuses (Tweets).
Like Twitter, we use the terminologies interchangably. */

View file

@ -12,7 +12,7 @@ export const returnError = (c: Context, error: string): Response => {
`<meta property="og:description" content="${error}"/>`
].join('')
})
);
) as Response;
};
/* Handler for Twitter users */