mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 10:30:55 +01:00
Workaround typing quirks from dependency update
This commit is contained in:
parent
f7172ba275
commit
a36854b4d9
2 changed files with 3 additions and 3 deletions
|
@ -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. */
|
||||
|
|
|
@ -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 */
|
||||
|
|
Loading…
Add table
Reference in a new issue