02-02-2023, 10:37 PM
(02-02-2023, 07:43 PM)jenzd Wrote: I have found out that it is rather easy to patch Moode to always use "--group-by album albumartist" instead of the default "--group-by album".
Just modify the file /var/www/inc/music-library.php. Search for the following line (near the end of the file):
Code:$mode = $_SESSION['ashuffle_mode'] == 'Album' ? '--group-by album ' : '';
And modify it (e.g. using "sudo nano /var/www/inc/music-library.php") to:
Code:$mode = $_SESSION['ashuffle_mode'] == 'Album' ? '--group-by album albumartist ' : '';
This completely fixed the auto-shuffle issue for me. Note however that this step needs to be repeated after each in-place update of Moode (which overwrites the file with a new version).
Thanks & best regards
Jens
I'll add to the TODO list for the upcoming release