diff options
| author | Hazelnoot <acomputerdog@gmail.com> | 2025-05-21 08:27:23 -0400 |
|---|---|---|
| committer | Hazelnoot <acomputerdog@gmail.com> | 2025-05-21 08:27:23 -0400 |
| commit | 28551c810309c69c8cc58fbc254507e705e8fa05 (patch) | |
| tree | b15a06ddf1d2c17a73e082d83c33a58f8b2dc645 /packages/backend/src/server/web/ClientServerService.ts | |
| parent | optimize extractUrlFromMfm (diff) | |
| download | sharkey-28551c810309c69c8cc58fbc254507e705e8fa05.tar.gz sharkey-28551c810309c69c8cc58fbc254507e705e8fa05.tar.bz2 sharkey-28551c810309c69c8cc58fbc254507e705e8fa05.zip | |
use config.url instead of "https://${config.host}"
Diffstat (limited to 'packages/backend/src/server/web/ClientServerService.ts')
| -rw-r--r-- | packages/backend/src/server/web/ClientServerService.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/backend/src/server/web/ClientServerService.ts b/packages/backend/src/server/web/ClientServerService.ts index 1321cf6338..c40d042fa4 100644 --- a/packages/backend/src/server/web/ClientServerService.ts +++ b/packages/backend/src/server/web/ClientServerService.ts @@ -890,6 +890,7 @@ export class ClientServerService { return await reply.view('info-card', { version: this.config.version, host: this.config.host, + url: this.config.url, meta: this.meta, originalUsersCount: await this.usersRepository.countBy({ host: IsNull() }), originalNotesCount: await this.notesRepository.countBy({ userHost: IsNull() }), |