mirror of https://github.com/Syncplay/syncplay
Ensure non-IPC mpv.net args are set (v7 workaround)
This commit is contained in:
parent
2fcb1e4f79
commit
793804ede2
|
@ -50,3 +50,9 @@ class MpvnetPlayer(MpvPlayer):
|
|||
def getIconPath(path):
|
||||
return constants.MPVNET_ICONPATH
|
||||
|
||||
def sendMpvOptions(self):
|
||||
for key in self._listener.mpv_arguments:
|
||||
if key != "script" and key != "input-ipc-server":
|
||||
self._setProperty(key, self._listener.mpv_arguments[key])
|
||||
super().sendMpvOptions()
|
||||
|
||||
|
|
Loading…
Reference in New Issue