diff --git a/src/AbraFlexi/Company.php b/src/AbraFlexi/Company.php index fbfe319..d4bf1a5 100644 --- a/src/AbraFlexi/Company.php +++ b/src/AbraFlexi/Company.php @@ -147,6 +147,8 @@ public function rawResponseToArray(string $responseRaw, string $format) $this->nameSpace = 'winstrom'; $response = parent::rawResponseToArray($responseRaw, $format); $this->nameSpace = $nsbackup; + } elseif ($responseRaw == 'ok') { + $response = ['success' => true]; } else { $response = parent::rawResponseToArray($responseRaw, $format); }