Skip to content

Commit

Permalink
Fix no space between artist and genre (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
Radiicall committed May 8, 2023
1 parent 1093753 commit 3dc8350
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/jellyfin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ impl Content {
None => (),
genre_array => {
genres.push_str(" - ");
genres = genre_array
genres += &genre_array
.unwrap()
.as_array()
.unwrap()
Expand Down

0 comments on commit 3dc8350

Please sign in to comment.