mirror of
https://github.com/fHDHR/fHDHR_NextPVR.git
synced 2025-12-06 03:16:58 -05:00
Fix Handling of missing Versions for ffmpeg/vlc
This commit is contained in:
parent
ab51ea02a1
commit
b92247c810
@ -65,7 +65,7 @@ class Plugin_OBJ():
|
||||
self.stream_args = stream_args
|
||||
self.tuner = tuner
|
||||
|
||||
if self.plugin_utils.config.internal["versions"]["ffmpeg"] == "Missing":
|
||||
if self.plugin_utils.config.internal["versions"]["ffmpeg"]["version"] == "Missing":
|
||||
raise TunerError("806 - Tune Failed: FFMPEG Missing")
|
||||
|
||||
self.bytes_per_read = int(plugin_utils.config.dict["streaming"]["bytes_per_read"])
|
||||
|
||||
@ -65,7 +65,7 @@ class Plugin_OBJ():
|
||||
self.stream_args = stream_args
|
||||
self.tuner = tuner
|
||||
|
||||
if self.plugin_utils.config.internal["versions"]["vlc"] == "Missing":
|
||||
if self.plugin_utils.config.internal["versions"]["vlc"]["version"] == "Missing":
|
||||
raise TunerError("806 - Tune Failed: VLC Missing")
|
||||
|
||||
self.bytes_per_read = int(self.plugin_utils.config.dict["streaming"]["bytes_per_read"])
|
||||
|
||||
Loading…
Reference in New Issue
Block a user