summaryrefslogtreecommitdiff
path: root/packages/backend/src/queue/processors
diff options
context:
space:
mode:
authorHazelnoot <acomputerdog@gmail.com>2025-04-02 10:35:11 -0400
committerHazelnoot <acomputerdog@gmail.com>2025-04-02 10:35:11 -0400
commitf9c153514738507268c913ffc9e5e619b65c88e9 (patch)
tree4911501336d095848f289a6ad5b8be1ddff6c762 /packages/backend/src/queue/processors
parentfix test errors in MfmService.ts (diff)
downloadsharkey-f9c153514738507268c913ffc9e5e619b65c88e9.tar.gz
sharkey-f9c153514738507268c913ffc9e5e619b65c88e9.tar.bz2
sharkey-f9c153514738507268c913ffc9e5e619b65c88e9.zip
fix backend lint errors
Diffstat (limited to 'packages/backend/src/queue/processors')
-rw-r--r--packages/backend/src/queue/processors/ImportNotesProcessorService.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/backend/src/queue/processors/ImportNotesProcessorService.ts b/packages/backend/src/queue/processors/ImportNotesProcessorService.ts
index ee9819b29f..5e660e8081 100644
--- a/packages/backend/src/queue/processors/ImportNotesProcessorService.ts
+++ b/packages/backend/src/queue/processors/ImportNotesProcessorService.ts
@@ -83,7 +83,7 @@ export class ImportNotesProcessorService {
}
@bindThis
- private downloadUrl(url: string, path:string): Promise<{filename: string}> {
+ private downloadUrl(url: string, path:string): Promise<{ filename: string }> {
return this.downloadService.downloadUrl(url, path, { operationTimeout: this.config.import?.downloadTimeout, maxSize: this.config.import?.maxFileSize });
}