From 0c5831bbd42f26be3f33ae423612c37f0728a6b9 Mon Sep 17 00:00:00 2001 From: dece Date: Sun, 1 Sep 2024 22:38:15 +0200 Subject: [PATCH] fix function that should not be static --- src/Service/FeedService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Service/FeedService.php b/src/Service/FeedService.php index 44d4338..282c33b 100644 --- a/src/Service/FeedService.php +++ b/src/Service/FeedService.php @@ -98,7 +98,7 @@ class FeedService } /** Use FFProbe to get the media duration, probably the easiest way but requires a working FFMpeg install. */ - protected static function getFileDuration(string $filepath): string + protected function getFileDuration(string $filepath): string { $ffprobeConfig = []; if ($this->ffprobePath) {