Also parse out spaces for YouTube videos

This commit is contained in:
Raymond Lu 2010-10-27 20:48:36 -04:00
parent 9d083ce6af
commit 93e335a606
1 changed files with 2 additions and 5 deletions

View File

@ -57,11 +57,8 @@ func handlePrivmsg(conn *irc.Conn, line *irc.Line) {
video = line.Text[27:]
}
if video != "" {
if amp := strings.Index(video, "&"); amp > -1 {
video = video[0:amp]
}
if pound := strings.Index(video, "#"); pound > -1 {
video = video[0:pound]
if end := strings.IndexAny(video, " &#"); end > -1 {
video = video[0:end]
}
youtube(conn, nick, video, target)
} else {