Fixed check for error in youtube link

This commit is contained in:
MichaelOultram 2015-08-07 13:54:44 +01:00
parent b7c6ecbf35
commit 508afd963a

View file

@ -96,7 +96,11 @@ func (yt YouTube) NewRequest(user *gumble.User, url string) (string, error) {
startOffset = matches[0][2]
}
song, err := yt.NewSong(user.Name, shortURL, startOffset, nil)
return song.Title(), err
if !isNil(song) {
return song.Title(), err
} else {
return "", err
}
}
} else {
return "", err