remove await

This commit is contained in:
Jonathan Jogenfors
2024-03-01 01:07:27 +01:00
parent 298215a76a
commit fb510e6153

View File

@@ -148,6 +148,6 @@ export class FilesystemProvider implements IStorageRepository {
watcher.on(StorageEventType.UNLINK, (path) => events.onUnlink?.(path));
watcher.on(StorageEventType.ERROR, (error) => events.onError?.(error));
return async () => await watcher.close();
return () => watcher.close();
}
}