diff --git a/GBase/FileHandling/FileHandler.cs b/GBase/FileHandling/FileHandler.cs
index 468fe12..89376b6 100644
--- a/GBase/FileHandling/FileHandler.cs
+++ b/GBase/FileHandling/FileHandler.cs
@@ -42,7 +42,7 @@ namespace GBase.FileHandling
/// True if successful, false if not
public async Task Init(string path, CancellationToken cancellationToken)
{
- DataHandler = _dataHandlerFactory.Create();
+ DataHandler = _dataHandlerFactory.Create(); //FixMe: Factory is missing parameters
bool success = await DataHandler.Init(false, cancellationToken);
return success;