diff --git a/module/finc/src/finc/ILS/Driver/FincILS.php b/module/finc/src/finc/ILS/Driver/FincILS.php
index c0e9f09883d76a4da9d73bbfdcf5176c25bb9697..c9d1b8ae164dba4b6c73c97d00732f0a0d143d43 100644
--- a/module/finc/src/finc/ILS/Driver/FincILS.php
+++ b/module/finc/src/finc/ILS/Driver/FincILS.php
@@ -1267,9 +1267,9 @@ class FincILS extends PAIA implements LoggerAwareInterface
      */
     public function getFinesTotal($patron) {
         $fines = $this->getMyFines($patron);
-        $total = 0;
+        $total = 0.0;
         foreach ($fines as $fee) {
-            $total += (int) $fee['amount'];
+            $total += (float) $fee['amount'];
         }
         return $total / 100;
     }