[SW 5.2.10] nach update, erstellung von documenten nicht möglich

tach zusaammen,

folgenden fehler hab ich gefunden, weshalb dokumente nicht mehr erstellt werden können.

// /engine/Shopware/Models/Document/Order.php
[#268]
$array["_billing"] = $array["_billing"]->getArrayCopy();
$array["_shipping"] = $array["_shipping"]->getArrayCopy();

leider ist $array["_shipping"] kein ArrayObject :frowning:

[_billing] => ArrayObject Object
    (
    )

[_shipping] => Array
    (
    )

daher fliegt alles um die  ohren.

hab nun die core wie folgt geändert:

if(is_object($array["_shipping"])){
    $array["_shipping"] = $array["_shipping"]->getArrayCopy();
}

zusätzlich sind versandadressen null :frowning: