mirror of
https://github.com/clementine-player/Clementine
synced 2025-02-01 20:06:53 +01:00
Fix: playlist name with non ASCII characters was not transfered correctly.
This commit is contained in:
parent
f40b8ab892
commit
578e143cf1
@ -115,7 +115,7 @@ void OutgoingDataCreator::SendAllPlaylists() {
|
||||
|
||||
// Create a new playlist
|
||||
pb::remote::Playlist* playlist = playlists->add_playlist();
|
||||
playlist->set_name(playlist_name.toStdString());
|
||||
playlist->set_name(DataCommaSizeFromQString(playlist_name));
|
||||
playlist->set_id(p->id());
|
||||
playlist->set_active((p->id() == active_playlist));
|
||||
playlist->set_item_count(p->rowCount());
|
||||
|
Loading…
x
Reference in New Issue
Block a user