Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
xBaank committed Jul 23, 2024
1 parent b21d9c1 commit 9030e98
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: PulseAudio
run: sudo apt-get install pulseaudio && pulseaudio --start
- name: Null sink
run: pactl load-module module-null-sink sink_name=DummySink
run: pactl load-module module-null-sink sink_name=DummySink && pacmd set-default-sink DummySink
- name: Restore dependencies
run: dotnet restore
- name: Build
Expand Down
2 changes: 1 addition & 1 deletion Console/Views/PlayerView.cs
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ async Task NextSong(bool bypassLoop)
}
};

loopButton.Accept += async (_, args) =>
loopButton.Accept += (_, args) =>
{
LoopState nextState = player.LoopState switch
{
Expand Down

0 comments on commit 9030e98

Please sign in to comment.