frigate: fix incorrect patch for ffmpeg path

This called on the class, so got the `property`, whereas we need to call
on the instance. Without this, get `TypeError: expected str, bytes or
os.PathLike object, not property`.

+1 -1
+1 -1
pkgs/by-name/fr/frigate/ffmpeg.patch
··· 41 41 seconds = int(diff % 60) 42 42 ffmpeg_cmd = [ 43 43 - "/usr/lib/ffmpeg/7.0/bin/ffmpeg", # hardcode path for exports thumbnail due to missing libwebp support 44 - + FfmpegConfig.ffmpeg_path, # hardcode path for exports thumbnail due to missing libwebp support 44 + + self.config.ffmpeg.ffmpeg_path, # hardcode path for exports thumbnail due to missing libwebp support 45 45 "-hide_banner", 46 46 "-loglevel", 47 47 "warning",