Additional tidying up

This commit is contained in:
dangered wolf 2023-05-12 16:12:11 -04:00
parent 7eace081c1
commit 57c03d0455
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58
2 changed files with 3 additions and 0 deletions

View file

@ -19,6 +19,7 @@ const statusRequest = async (
) => {
const { handle, id, mediaNumber, language, prefix } = request.params;
const url = new URL(request.url);
// eslint-disable-next-line sonarjs/no-duplicate-string
const userAgent = request.headers.get('User-Agent') || '';
/* User Agent matching for embed generators, bots, crawlers, and other automated

View file

@ -58,6 +58,7 @@ interface APITranslate {
source_lang_en: string;
target_lang: string;
}
interface BaseUser {
id?: string;
name?: string;
@ -65,6 +66,7 @@ interface BaseUser {
avatar_url?: string;
banner_url?: string;
}
interface APITweetAuthor extends BaseUser {
avatar_color: string;
}