diff --git a/module/VuFind/src/VuFind/Related/Editions.php b/module/VuFind/src/VuFind/Related/Editions.php
index 945a2503c98538e29bf8e3bc290df132efa84a08..10772b7a2181f1ba24423454a38c6e6e60e19034 100644
--- a/module/VuFind/src/VuFind/Related/Editions.php
+++ b/module/VuFind/src/VuFind/Related/Editions.php
@@ -147,33 +147,27 @@ class Editions implements RelatedInterface
     protected function getQueryParts($driver)
     {
         $parts = array();
-        if (method_exists($driver, 'getCleanOCLCNum')) {
-            $oclcNum = $driver->getCleanOCLCNum();
-            if (!empty($oclcNum)) {
-                $oclcList = $this->wcUtils->getXOCLCNUM($oclcNum);
-                foreach ($oclcList as $current) {
-                    $parts[] = "oclc_num:" . $current;
-                }
+        $oclcNum = $driver->tryMethod('getCleanOCLCNum');
+        if (!empty($oclcNum)) {
+            $oclcList = $this->wcUtils->getXOCLCNUM($oclcNum);
+            foreach ($oclcList as $current) {
+                $parts[] = "oclc_num:" . $current;
             }
         }
-        if (method_exists($driver, 'getCleanISBN')) {
-            $isbn = $driver->getCleanISBN();
-            if (!empty($isbn)) {
-                $isbnList = $this->wcUtils->getXISBN($isbn);
-                foreach ($isbnList as $current) {
-                    $parts[] = 'isbn:' . $current;
-                }
+        $isbn = $driver->tryMethod('getCleanISBN');
+        if (!empty($isbn)) {
+            $isbnList = $this->wcUtils->getXISBN($isbn);
+            foreach ($isbnList as $current) {
+                $parts[] = 'isbn:' . $current;
             }
         }
-        if (method_exists($driver, 'getCleanISSN')) {
-            $issn = $driver->getCleanISSN();
-            if (!empty($issn)) {
-                $issnList = $this->wcUtils->getXISSN($issn);
-                foreach ($issnList as $current) {
-                    $parts[] = 'issn:' . $current;
-                }
+        $issn = $driver->tryMethod('getCleanISSN');
+        if (!empty($issn)) {
+            $issnList = $this->wcUtils->getXISSN($issn);
+            foreach ($issnList as $current) {
+                $parts[] = 'issn:' . $current;
             }
         }
         return $parts;
     }
-}
+}
\ No newline at end of file