Skip to content

Commit

Permalink
Add missing argument to IPC loadfile call
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben-Kerman committed Apr 25, 2024
1 parent 4522c28 commit 9bde59a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# 1.4 - 2024-04-25

Mostly changes that were already committed in 2021 but didn't warrant a release on
their own, and a critical fix for a crash due to changes in mpv property names
Mostly changes that were already committed in 2021 but didn't warrant a release on their own,
but most importantly a critical fix for a crash due to changes in mpv property names

Features:
- Add field template variable `selections`
Expand All @@ -20,6 +20,7 @@ Fixes:
- **Fix crash on startup with mpv 0.38** due to `background` being renamed to `background-color`
and `background` becoming a different property
- Fix Forvo support
- Fix audio preview

# 1.3 - 2021-10-12

Expand Down
2 changes: 1 addition & 1 deletion systems/player.lua
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ end)
local player = {}

function player.play(path, start, stop, aid)
local cmd = {"loadfile", path, "replace"}
local cmd = {"loadfile", path, "replace", 0}
if start or stop or aid then
table.insert(cmd, {
aid = aid and tostring(aid),
Expand Down

0 comments on commit 9bde59a

Please sign in to comment.