Hi, sorry another question 
Trying to add a track to the queue but I can’t seem to get the encoding right, is there anything specific I need to do? Various examples below, I tired matching what was in debug.log but that didn’t work either;
String my_track = "file:///%2Fstorage%2F9C33-6BBD%2FMusic%2FVarious%20Artists%2FBest%20of%202017%2F61%20-%20Best%20of%202017%20(Danny%20Serrano%20Mixtape)%20-%20Danny%20Serrano.mp3";
AddtoQueue(my_track);
String my2_track = "file:////storage//9C33-6BBD//Music//Placebo//(2015) Placebo - MTV Unplugged//07 - Meds.mp3";
AddtoQueue(my2_track);
String my3_track = "/storage/9C33-6BBD/Music/Placebo/(2015) Placebo - MTV Unplugged/07 - Meds.mp3";
AddtoQueue(my3_track);
private void AddtoQueue(String track) {
Intent i = new Intent();
i.setComponent(new ComponentName("app.symfonik.music.player", "app.symfonium.remote.api.ApiReceiver"));
i.setAction("app.symfonium.api.MEDIA_START");
i.putExtra("MEDIA_TYPE", "song");
i.putExtra("NAME", track);
i.putExtra("QUEUE", 2);
i.addFlags(Intent.FLAG_INCLUDE_STOPPED_PACKAGES);
sendBroadcast(i);
}
I tried a song with no special encoding and I just get this in the debug log (same error msg obvious track name varies);
2022-09-03 22:32:13.991 Verbose/QueryBuilder: Query: SELECT songs._id,songs.updated_at,songs.provider_id,songs.external_id,songs.external_data,songs.album_id,songs.date_added,songs.disc,songs.display_artist,songs.duration,songs.fanart,songs.file,songs.genres,songs.last_played,songs.lyrics,songs.offline_status,songs.play_count,songs.rating,songs.sort_title,songs.thumbnail,songs.title,songs.track,songs.year,songs.user_rating,songs.is_favorite,songs.source_library,songs.remote_play,songs.resume_point,CASE WHEN songs.thumbnail IS NULL THEN albums.thumbnail ELSE songs.thumbnail END,albums.title FROM songs LEFT JOIN albums ON (songs.album_id=albums._id) WHERE (songs.title LIKE ?) (‘/storage/9C33-6BBD/Music/Yuna/Yuna/05 - Planes.mp3’) [0 in 41.43ms]
2022-09-03 22:32:13.994 Verbose/ApiReceiver: Song not found: /storage/9C33-6BBD/Music/Yuna/Yuna/05 - Planes.mp3
Thanks