1 files changed, 1 insertions, 1 deletions
diff --git a/MxApiExtensions/FileStorageProvider.cs b/MxApiExtensions/FileStorageProvider.cs
index c2bb267..9ca330a 100644
--- a/MxApiExtensions/FileStorageProvider.cs
+++ b/MxApiExtensions/FileStorageProvider.cs
@@ -17,7 +17,7 @@ public class FileStorageProvider : IStorageProvider {
new Logger<FileStorageProvider>(new LoggerFactory()).LogInformation("test");
Console.WriteLine($"Initialised FileStorageProvider with path {targetPath}");
TargetPath = targetPath;
- if(!Directory.Exists(targetPath)) {
+ if (!Directory.Exists(targetPath)) {
Directory.CreateDirectory(targetPath);
}
}
|