diff options
| author | Hazelnoot <acomputerdog@gmail.com> | 2025-02-04 10:38:50 -0500 |
|---|---|---|
| committer | Hazelnoot <acomputerdog@gmail.com> | 2025-02-04 10:38:50 -0500 |
| commit | 980ea858f20bba92b932128c40f3336d727ac1cd (patch) | |
| tree | 363f3a8574506c864db60d9660068fe075ea9f1e | |
| parent | fix import order in i/change-password.ts (diff) | |
| download | sharkey-980ea858f20bba92b932128c40f3336d727ac1cd.tar.gz sharkey-980ea858f20bba92b932128c40f3336d727ac1cd.tar.bz2 sharkey-980ea858f20bba92b932128c40f3336d727ac1cd.zip | |
fix import order in ActivityPubServerService.ts
| -rw-r--r-- | packages/backend/src/server/ActivityPubServerService.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/backend/src/server/ActivityPubServerService.ts b/packages/backend/src/server/ActivityPubServerService.ts index a4dddbd6c3..1f838ffdbe 100644 --- a/packages/backend/src/server/ActivityPubServerService.ts +++ b/packages/backend/src/server/ActivityPubServerService.ts @@ -34,10 +34,10 @@ import { bindThis } from '@/decorators.js'; import { IActivity } from '@/core/activitypub/type.js'; import { isQuote, isRenote } from '@/misc/is-renote.js'; import * as Acct from '@/misc/acct.js'; -import type { FastifyInstance, FastifyRequest, FastifyReply, FastifyPluginOptions, FastifyBodyParser } from 'fastify'; -import type { FindOptionsWhere } from 'typeorm'; import type Logger from '@/logger.js'; import { LoggerService } from '@/core/LoggerService.js'; +import type { FastifyInstance, FastifyRequest, FastifyReply, FastifyPluginOptions, FastifyBodyParser } from 'fastify'; +import type { FindOptionsWhere } from 'typeorm'; const ACTIVITY_JSON = 'application/activity+json; charset=utf-8'; const LD_JSON = 'application/ld+json; profile="https://www.w3.org/ns/activitystreams"; charset=utf-8'; |