[print_cue_breaklist] Fixed use of cuebreakpoints rather than print_breakpoints

This commit is contained in:
ayakael 2019-04-08 15:20:13 -04:00
parent 1acd573afc
commit 6190983149
Signed by untrusted user who does not match committer: forge
GPG key ID: D62A472A4AA7D541

View file

@ -17,7 +17,7 @@ print_cue_breaklist() {
local breakList=(0:00:00)
if shntool cue ${fileList[@]} >/dev/null 2>&1; then
shntool cue ${fileList[@]} > joined.cue
local breakList=(${breakList[@]} $(cuebreakpoints joined.cue | sed 's|\.|:|g'))
local breakList=(${breakList[@]} $(print_breakpoints joined.cue))
rm joined.cue
else
local durList=($(soxi -D "${fileList[@]}"))