make sure calls to server are async in UI callbacks; fix genre page not playing albums regression

This commit is contained in:
Drew Weymouth
2023-02-16 17:55:33 -08:00
parent aa2204b88f
commit 941012b7d2
9 changed files with 72 additions and 70 deletions
+1 -1
View File
@@ -188,7 +188,7 @@ func (a *AlbumsPage) doSearch(query string) {
}
func (a *AlbumsPage) onPlayAlbum(albumID string) {
a.pm.PlayAlbum(albumID, 0)
go a.pm.PlayAlbum(albumID, 0)
}
func (a *AlbumsPage) onShowArtistPage(artistID string) {