From c3b2e840f74009c44ed7c2713fd311c072333b7a Mon Sep 17 00:00:00 2001 From: jeroen Date: Mon, 19 Sep 2022 11:25:05 +0200 Subject: [PATCH] BUGFIX: The unknown data is actually a string --- src/Readers/Swar5.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Readers/Swar5.php b/src/Readers/Swar5.php index 498d6ec..5c0c060 100644 --- a/src/Readers/Swar5.php +++ b/src/Readers/Swar5.php @@ -230,7 +230,7 @@ class Swar5 implements ReaderInterface // Tempo string is not variable and dependant on kind of tournament $this->Tournament->TempoIndex = $this->readData('Int', $swshandle); - $this->readData('Int', $swshandle); // some unknown data + $this->readData('String', $swshandle); // some unknown data $this->Tournament->NoOfRounds = $this->readData('Int', $swshandle); $this->Tournament->FRBEfrom = $this->readData('Int', $swshandle);