get only the first line of title.
parent
0afbf7cb39
commit
ae15105961
|
@ -42,7 +42,7 @@ Client.register_trigger("PRIVMSG") do |msg|
|
|||
url = Digest::MD5.hexdigest(word)
|
||||
end
|
||||
|
||||
title = Nokogiri::HTML(open(word).read).title()
|
||||
title = Nokogiri::HTML(open(word).read).title().split(/\n/)[0]
|
||||
|
||||
Scrape::Link.create(
|
||||
:url => url,
|
||||
|
|
Loading…
Reference in New Issue