Skip to content

Commit

Permalink
fix: исправить вылеты приложения
Browse files Browse the repository at this point in the history
Вылет случался при запуске списка треков, включении повтора очереди, а затем включении волны

https://t.me/CassetteGNOME_Discussion/16555
  • Loading branch information
Rirusha committed May 29, 2024
1 parent 30188dc commit 393c158
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/client/player/player.vala
Original file line number Diff line number Diff line change
Expand Up @@ -289,6 +289,10 @@ public class Cassette.Client.Player.Player : Object {
) {
stop ();

if (repeat_mode == RepeatMode.QUEUE) {
repeat_mode = RepeatMode.OFF;
}

var flow = new Flow (
this,
station_id,
Expand Down

0 comments on commit 393c158

Please sign in to comment.