From 4a37058fd7747cf5fe76a6b1bd8c0355f6344ede Mon Sep 17 00:00:00 2001 From: tydeno <83050419+tydeno@users.noreply.github.com> Date: Sun, 2 May 2021 03:30:11 +0200 Subject: [PATCH] Update Ploto.psm1 --- Ploto.psm1 | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Ploto.psm1 b/Ploto.psm1 index a93a5ba..55d3c7d 100644 --- a/Ploto.psm1 +++ b/Ploto.psm1 @@ -1,7 +1,7 @@ <# .SYNOPSIS Name: Ploto -Version: 1.0.5 +Version: 1.0.5.1 Author: Tydeno @@ -513,7 +513,9 @@ foreach ($log in $logs) $tempDrive = ($loggerRead -match "TempDrive").line.Split("=").split(";")[1] $chiaPid = ($loggerRead -match "PID").line.Split(" ")[1] $PlotoSpawnerJobId = ($loggerRead -match "PlotoSpawnerJobId").line.Split(" ")[1] - $StartTime = ($loggerRead -match "StartTime").line.Split(":")[1] + $StartTimeSplitted = ($loggerRead -match "StartTime").line.Split(":") + $StartTime = $StartTimeSplitted[1]+":" + $StartTimeSplitted[2]+":" + $StartTimeSplitted[3] + $StatLogPath = $logger.FullName