Index: /changelog
===================================================================
--- /changelog	(revision 7788)
+++ /changelog	(revision 7789)
@@ -408,3 +408,4 @@
 - Bugfix: Anzeige von Produktattributen bei Varianten
 - Bugfix: Klicken auf Bild in der Produktverwaltung Ã¶ffnet das Produkt
+- Bugfix: PayPal V2 Problem "Ressource nicht gefunden"
 - Feature: Erinnerungsmail bei UnvollstÃ€ndigen Bestellungen
Index: /mods/wpsg_mod_paypalapi.class.php
===================================================================
--- /mods/wpsg_mod_paypalapi.class.php	(revision 7788)
+++ /mods/wpsg_mod_paypalapi.class.php	(revision 7789)
@@ -523,6 +523,12 @@
                 } else {
 
-				    $payment_info = $this->api_getPaymentInfo_v2($wpsg_mod_paypalapi_paymentid, true);
-				    $amount_approved = floatval($payment_info['purchase_units'][0]['amount']['value']);
+                    try {
+
+                        $payment_info = $this->api_getPaymentInfo_v2($wpsg_mod_paypalapi_paymentid, true);
+                        $amount_approved = floatval($payment_info['purchase_units'][0]['amount']['value']);
+
+                    } catch (\Exception $e) {
+
+                    }
 
                 }
