Skip to content

Commit

Permalink
More
Browse files Browse the repository at this point in the history
  • Loading branch information
toots committed Nov 25, 2024
1 parent 7173fc6 commit 1a5d607
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -673,7 +673,7 @@ jobs:
build-args: |
DEB_FILE=${{ steps.debian_package.outputs.deb-file }}
DEB_DEBUG_FILE=${{ steps.debian_debug_package.outputs.deb-file }}
DOCKER_DEBIAN_ARCH=needs.build_details.outputs.debian_docker_arch
DOCKER_DEBIAN_ARCH=${{ needs.build_details.outputs.debian_docker_arch }}
- name: Build and push minimal docker image
uses: depot/build-push-action@v1
Expand All @@ -685,7 +685,7 @@ jobs:
build-args: |
DEB_FILE=${{ steps.debian_minimal_package.outputs.deb-file }}
DEB_DEBUG_FILE=${{ steps.debian_minimal_debug_package.outputs.deb-file }}
DOCKER_DEBIAN_ARCH=needs.build_details.outputs.debian_docker_arch
DOCKER_DEBIAN_ARCH=${{ needs.build_details.outputs.debian_docker_arch }}
- name: Build and push alpine docker image
uses: depot/build-push-action@v1
Expand Down
3 changes: 2 additions & 1 deletion src/core/playlists/playlist_basic.ml
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,11 @@ let parse_extinf s =
meta
@
match lines with
| [] -> []
| [] | [""; ""] -> []
| [""; song] -> [("song", String.trim song)]
| [artist; title] ->
[("artist", String.trim artist); ("title", String.trim title)]
| _ when song = "" -> []
| _ -> [("song", String.trim song)]
with Not_found -> []

Expand Down

0 comments on commit 1a5d607

Please sign in to comment.