Remove trailing newline from exec.Command

haste/handle-touch
Stein Ivar Berghei 2022-11-20 22:10:27 +01:00
parent bba1bc5fa0
commit c2d41e5d95
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ func NewYTdl(vid string) ([]byte, error) {
return nil, err
}
return uri, nil
return uri[:len(uri)-1], nil
}
func DownloadAmbiance(uri string, name string) error {