fix label manager empty array

This commit is contained in:
Yuri Kuznetsov
2022-06-09 09:39:48 +03:00
parent fb4730942f
commit e267c88043
@@ -293,6 +293,10 @@ class LabelManager implements
$languageObj->save();
if ($returnDataHash === []) {
return (object) [];
}
return json_decode(Json::encode($returnDataHash));
}
}