mirror of https://github.com/fluffle/goirc
Also parse out spaces for YouTube videos
This commit is contained in:
parent
9d083ce6af
commit
93e335a606
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue