Skip to content

Commit

Permalink
Fix: Remove split char from vorbis comment value #1217
Browse files Browse the repository at this point in the history
  • Loading branch information
jcorporation committed Feb 10, 2024
1 parent 7a7383f commit ea78601
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@ This is a small bugfix release.

### Changelog

- Fix: use only configured tags #1215
- Fix: reconnect to MPD after connection parameters has changed
- Fix: Use only configured tags #1215
- Fix: Reconnect to MPD after connection parameters has changed
- Fix: Remove split char from vorbis comment value #1217

***

Expand Down
1 change: 1 addition & 0 deletions src/mympd_api/lyrics.c
Original file line number Diff line number Diff line change
Expand Up @@ -533,6 +533,7 @@ static void lyricsextract_flac(struct t_list *extracted, sds media_file, bool is
if (field_value != NULL &&
strlen(field_value) > 1)
{
field_value++;
buffer = sdscatlen(buffer, "{", 1);
buffer = tojson_bool(buffer, "synced", synced, true);
buffer = tojson_char_len(buffer, "lang", "", 0, true);
Expand Down

0 comments on commit ea78601

Please sign in to comment.