The webhook script needs to use the rewind technique
[SonOfLokstallBot.git] / src / common.php
index bc627f4..e71dc5a 100644 (file)
@@ -395,7 +395,7 @@ function getFilePathsForYear(int $year) {
 
 function closestIndex(int $n, array $list) {
     $a = map(function(int $v) use ($n) : int {
-            return (int)abs($v - $n);
+            return abs($v - $n);
         })
         ($list);