diff --git a/.github/workflows/ci-pipeline.yml b/.github/workflows/ci-pipeline.yml index 64bb6f5a..d05c52c8 100644 --- a/.github/workflows/ci-pipeline.yml +++ b/.github/workflows/ci-pipeline.yml @@ -2,7 +2,7 @@ on: push: branches: - - master + - feature/shopware-5-5 jobs: build: permissions: diff --git a/Components/Integration/PaymentProcessors/ShopperReferenceProcessor.php b/Components/Integration/PaymentProcessors/ShopperReferenceProcessor.php index 01d5c49f..38c983f9 100644 --- a/Components/Integration/PaymentProcessors/ShopperReferenceProcessor.php +++ b/Components/Integration/PaymentProcessors/ShopperReferenceProcessor.php @@ -54,7 +54,7 @@ public function processPaymentLink(PaymentLinkRequestBuilder $builder, PaymentLi $builder->setShopperReference( ShopperReference::parse( - $shop->getHost() . '_' . Shop::getShopId() . '_' . $order->getCustomer()->getId() + $shop->getHost() . '_' . $order->getShop()->getId() . '_' . $order->getCustomer()->getId() ) ); }