diff --git a/module/finc/src/finc/RecordDriver/SolrMarc.php b/module/finc/src/finc/RecordDriver/SolrMarc.php
index 6ad89476d78005fc05211295cad168aeda724bd6..743a7c3559c3456239edb29943c2999118217e74 100644
--- a/module/finc/src/finc/RecordDriver/SolrMarc.php
+++ b/module/finc/src/finc/RecordDriver/SolrMarc.php
@@ -290,16 +290,8 @@ class SolrMarc extends SolrDefault
      */
     public function getPlayingTimes()
     {
-        $times = $this->getFieldArray('306', ['a'], false);
-
-        // Format the times to include colons ("HH:MM:SS" format).
-        for ($x = 0; $x < count($times); $x++) {
-            $times[$x] = substr($times[$x], 0, 2) . ':' .
-                substr($times[$x], 2, 2) . ':' .
-                substr($times[$x], 4, 2);
-        }
-
-        return $times;
+        // we do not need the special re-formatting from the super method
+        return $this->getFieldArray('306', ['a'], false);
     }
 
     /**