diff --git a/server/core/helpers/geo-ip.ts b/server/core/helpers/geo-ip.ts index dde2949b7..8e2351e53 100644 --- a/server/core/helpers/geo-ip.ts +++ b/server/core/helpers/geo-ip.ts @@ -1,12 +1,12 @@ +import { CONFIG } from '@server/initializers/config.js' import { pathExists } from 'fs-extra/esm' import { writeFile } from 'fs/promises' +import throttle from 'lodash-es/throttle.js' import maxmind, { CityResponse, CountryResponse, Reader } from 'maxmind' import { join } from 'path' -import { CONFIG } from '@server/initializers/config.js' +import { isArray } from './custom-validators/misc.js' import { logger, loggerTagsFactory } from './logger.js' import { isBinaryResponse, peertubeGot } from './requests.js' -import { isArray } from './custom-validators/misc.js' -import { throttle } from 'lodash-es' const lTags = loggerTagsFactory('geo-ip')