From 4c0f19b257323774bdb61ee55db638c0f8e36783 Mon Sep 17 00:00:00 2001 From: Hazel Noack Date: Thu, 9 Oct 2025 13:50:27 +0200 Subject: [PATCH] adding helpfull debug info at hell --- internal/cli/shell.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/cli/shell.go b/internal/cli/shell.go index 85213ab..a513e05 100644 --- a/internal/cli/shell.go +++ b/internal/cli/shell.go @@ -49,7 +49,7 @@ func printResults(musicObjects []data.MusicObject) { sources := m.GetSources() if len(sources) > 0 { for _, source := range sources { - results[i] += "\n\t- " + source.Url + results[i] += "\n\t- " + source.SourceType.Name + " " + string(source.ObjectType) + " " + source.Url } } else { results[i] = color.StrikeThrough + results[i] + color.Reset