Skip to content
This repository was archived by the owner on May 9, 2026. It is now read-only.

Commit 1431edb

Browse files
author
Benex254
committed
fix: mpv funtion returning less
1 parent f9fc210 commit 1431edb

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

fastanime/cli/utils/mpv.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ def mpv(
9999
"-n",
100100
"com.google.android.youtube/.UrlActivity",
101101
]
102-
return "0"
102+
return "0", "0"
103103
else:
104104
# Android specific commands to launch mpv with a regular URL
105105
args = [
@@ -117,7 +117,7 @@ def mpv(
117117
]
118118

119119
subprocess.run(args)
120-
return "0"
120+
return "0", "0"
121121
else:
122122
# General mpv command with custom arguments
123123
mpv_args = []

0 commit comments

Comments
 (0)