mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-06 19:10:54 +01:00
Additional tidying up
This commit is contained in:
parent
7eace081c1
commit
57c03d0455
2 changed files with 3 additions and 0 deletions
|
@ -19,6 +19,7 @@ const statusRequest = async (
|
||||||
) => {
|
) => {
|
||||||
const { handle, id, mediaNumber, language, prefix } = request.params;
|
const { handle, id, mediaNumber, language, prefix } = request.params;
|
||||||
const url = new URL(request.url);
|
const url = new URL(request.url);
|
||||||
|
// eslint-disable-next-line sonarjs/no-duplicate-string
|
||||||
const userAgent = request.headers.get('User-Agent') || '';
|
const userAgent = request.headers.get('User-Agent') || '';
|
||||||
|
|
||||||
/* User Agent matching for embed generators, bots, crawlers, and other automated
|
/* User Agent matching for embed generators, bots, crawlers, and other automated
|
||||||
|
|
2
src/types/types.d.ts
vendored
2
src/types/types.d.ts
vendored
|
@ -58,6 +58,7 @@ interface APITranslate {
|
||||||
source_lang_en: string;
|
source_lang_en: string;
|
||||||
target_lang: string;
|
target_lang: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface BaseUser {
|
interface BaseUser {
|
||||||
id?: string;
|
id?: string;
|
||||||
name?: string;
|
name?: string;
|
||||||
|
@ -65,6 +66,7 @@ interface BaseUser {
|
||||||
avatar_url?: string;
|
avatar_url?: string;
|
||||||
banner_url?: string;
|
banner_url?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface APITweetAuthor extends BaseUser {
|
interface APITweetAuthor extends BaseUser {
|
||||||
avatar_color: string;
|
avatar_color: string;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue