Add Shipyard & Fix ShipLocker
Update File handling Update Journal handling Update README.md
This commit is contained in:
parent
bc958e7679
commit
235cb2401a
17 changed files with 253 additions and 528 deletions
|
|
@ -40,7 +40,7 @@ public class StatusService
|
|||
|
||||
public async Task HandleFile(string filePath)
|
||||
{
|
||||
if (!ValidateFile(filePath))
|
||||
if (!FileHelper.ValidateFile(filePath))
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
|
@ -61,7 +61,7 @@ public class StatusService
|
|||
{
|
||||
var statusFile = Path.Combine(options.Value.JournalDirectory, FileName);
|
||||
|
||||
if (!ValidateFile(statusFile))
|
||||
if (!FileHelper.ValidateFile(statusFile))
|
||||
{
|
||||
return new Status();
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue