remove unnnecessary const

This commit is contained in:
tamaina 2023-01-25 14:13:08 +00:00
parent 88ca63abdc
commit 922c5930d6

View file

@ -328,7 +328,7 @@ export class FileServerService {
> {
const [path, cleanup] = await createTemp();
try {
const response = await this.downloadService.downloadUrl(url, path);
await this.downloadService.downloadUrl(url, path);
const { mime, ext } = await this.fileInfoService.detectType(path);