diff options
Diffstat (limited to 'packages/backend/src/core/InternalStorageService.ts')
| -rw-r--r-- | packages/backend/src/core/InternalStorageService.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/backend/src/core/InternalStorageService.ts b/packages/backend/src/core/InternalStorageService.ts index abdbbc61d3..1b4f1880b9 100644 --- a/packages/backend/src/core/InternalStorageService.ts +++ b/packages/backend/src/core/InternalStorageService.ts @@ -48,7 +48,7 @@ export class InternalStorageService { const path = this.resolvePath(key); await chmod(path, this.config.filePermissionBits); } - return `${this.config.url}/files/${key}`; + return `${this.config.webUrl}/files/${key}`; } @bindThis |