fix(mpv): correct order of args

This commit is contained in:
Benex254
2024-08-05 09:47:03 +03:00
parent fa3c00f0b3
commit 915b791e70

View File

@@ -2,11 +2,7 @@ import shutil
import subprocess
def mpv(
link,
*custom_args,
title="anime",
):
def mpv(link, title="anime", *custom_args):
MPV = shutil.which("mpv")
if not MPV:
args = [