remove print
ci/woodpecker/push/woodpecker Pipeline was successful Details
ci/woodpecker/tag/woodpecker Pipeline failed Details

This commit is contained in:
abs3nt 2023-09-26 15:41:02 -07:00
parent 84b3bd2f90
commit 696ee7e263
Signed by: abs3nt
GPG Key ID: FDC6662313FA9386
1 changed files with 0 additions and 3 deletions

View File

@ -2,13 +2,11 @@ package tui
import (
"fmt"
"reflect"
"strings"
"time"
"git.asdf.cafe/abs3nt/gospt/src/commands"
"git.asdf.cafe/abs3nt/gospt/src/gctx"
"tuxpa.in/a/zlog/log"
"github.com/atotto/clipboard"
"github.com/charmbracelet/bubbles/key"
@ -95,7 +93,6 @@ type mainModel struct {
func (m *mainModel) PlayRadio() {
go m.SendMessage("Starting radio for "+m.list.SelectedItem().(mainItem).Title(), 2*time.Second)
selectedItem := m.list.SelectedItem().(mainItem).SpotifyItem
log.Info().Msgf("%s", reflect.TypeOf(selectedItem))
switch item := selectedItem.(type) {
case spotify.SimplePlaylist:
go HandlePlaylistRadio(m.ctx, m.commands, item)