Skip to content

Commit 0148c16

Browse files
chore: android player fix
1 parent b56fa28 commit 0148c16

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

flix_cli/core/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__core__ = "1.8.1.7"
1+
__core__ = "1.8.1.8"

flix_cli/core/utils/__player__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def play(file: str, name: str, referer: str, subtitles: list[str]) -> None:
4848
"-n", "org.videolan.vlc/org.videolan.vlc.gui.video.VideoPlayerActivity",
4949
"-e", "title", f"Playing {name}"
5050
]
51-
args.extend(f"-e subtitles_location {_}" for _ in subtitles)
51+
args.extend(["-e", "subtitles_location", f"{subtitles[0]}"])
5252
subprocess.run(args, check=True, capture_output=True)
5353

5454
print(f"~ Opened in VLC ~")

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "flix-cli"
7-
version = "1.8.1.7"
7+
version = "1.8.1.8"
88
description = "A high efficient, powerful and fast movie scraper."
99
authors = [{name = "DemonKingSwarn", email = "rockingswarn@gmail.com"}]
1010
license = {text = "GPLv3"}

0 commit comments

Comments
 (0)