Skip to content
Snippets Groups Projects
Commit 779653f7 authored by Yassine Doghri's avatar Yassine Doghri
Browse files

fix: explicitly cast seconds to int in iso8601_duration helper function

episode page was unaccessible on with php8.1 and dev mode
parent 3b73c672
No related branches found
No related tags found
No related merge requests found
......@@ -305,7 +305,7 @@ if (! function_exists('iso8601_duration')) {
function iso8601_duration(float $seconds): string
{
$days = floor($seconds / 86400);
$seconds %= 86400;
$seconds = (int) $seconds % 86400;
$hours = floor($seconds / 3600);
$seconds %= 3600;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment