From f77b3059b372d1041ce69a93ca0bf77f028c0e2f Mon Sep 17 00:00:00 2001 From: dangered wolf Date: Sun, 10 Sep 2023 20:43:27 -0400 Subject: [PATCH] Move graphql helper from utils into helpers --- src/api/status.ts | 2 +- src/fetch.ts | 2 +- src/{utils => helpers}/graphql.ts | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename src/{utils => helpers}/graphql.ts (100%) diff --git a/src/api/status.ts b/src/api/status.ts index 02ea305..f4b9652 100644 --- a/src/api/status.ts +++ b/src/api/status.ts @@ -7,7 +7,7 @@ import { translateTweet } from '../helpers/translate'; import { unescapeText } from '../helpers/utils'; import { processMedia } from '../helpers/media'; import { convertToApiUser } from './user'; -import { isGraphQLTweet } from '../utils/graphql'; +import { isGraphQLTweet } from '../helpers/graphql'; /* This function does the heavy lifting of processing data from Twitter API and using it to create FixTweet's streamlined API responses */ diff --git a/src/fetch.ts b/src/fetch.ts index 2f13ade..49157f8 100644 --- a/src/fetch.ts +++ b/src/fetch.ts @@ -1,7 +1,7 @@ import { Constants } from './constants'; import { Experiment, experimentCheck } from './experiments'; import { generateUserAgent } from './helpers/useragent'; -import { isGraphQLTweet } from './utils/graphql'; +import { isGraphQLTweet } from './helpers/graphql'; const API_ATTEMPTS = 3; let wasElongatorDisabled = false; diff --git a/src/utils/graphql.ts b/src/helpers/graphql.ts similarity index 100% rename from src/utils/graphql.ts rename to src/helpers/graphql.ts