Skip to content
This repository has been archived by the owner on Sep 2, 2024. It is now read-only.

Commit

Permalink
Select first episode when queuing all new episodes
Browse files Browse the repository at this point in the history
in case current_episode is null
  • Loading branch information
Hanouta committed Apr 5, 2020
1 parent 2956e80 commit 1e4e7a6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/MainWindow.vala
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,11 @@ namespace Vocal {
});
new_episodes_view.add_all_new_to_queue.connect ((episodes) => {
foreach (Episode e in episodes) {
enqueue_episode (e);
if (controller.get_episode () == null) {
controller.set_episode (e);
} else {
enqueue_episode (e);
}
}
});

Expand Down

0 comments on commit 1e4e7a6

Please sign in to comment.