mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 18:40:56 +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';
|
import { constructTwitterThread } from '../providers/twitter/conversation';
|
||||||
|
|
||||||
export const returnError = (c: Context, error: string): Response => {
|
export const returnError = (c: Context, error: string): Response => {
|
||||||
return c.text(
|
return c.html(
|
||||||
Strings.BASE_HTML.format({
|
Strings.BASE_HTML.format({
|
||||||
lang: '',
|
lang: '',
|
||||||
headers: [
|
headers: [
|
||||||
|
@ -18,7 +18,7 @@ export const returnError = (c: Context, error: string): Response => {
|
||||||
`<meta property="og:description" content="${error}"/>`
|
`<meta property="og:description" content="${error}"/>`
|
||||||
].join('')
|
].join('')
|
||||||
})
|
})
|
||||||
);
|
) as Response;
|
||||||
};
|
};
|
||||||
/* Handler for Twitter statuses (Tweets).
|
/* Handler for Twitter statuses (Tweets).
|
||||||
Like Twitter, we use the terminologies interchangably. */
|
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}"/>`
|
`<meta property="og:description" content="${error}"/>`
|
||||||
].join('')
|
].join('')
|
||||||
})
|
})
|
||||||
);
|
) as Response;
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Handler for Twitter users */
|
/* Handler for Twitter users */
|
||||||
|
|
Loading…
Add table
Reference in a new issue