lib/lita/handlers/onewheel_filmplot.rb in lita-onewheel-filmplot-0.1.0 vs lib/lita/handlers/onewheel_filmplot.rb in lita-onewheel-filmplot-0.1.1

- old
+ new

@@ -39,9 +39,14 @@ movie_slug = title.gsub ' ', '_' get_url = "#{url_root}/m/#{movie_slug}" Lita.logger.debug("Getting #{get_url}") end + unless get_url + response.reply "#{title} not found, did you try typing it in as it was at the theatres? e.g. 'Blade Runner'" + return + end + begin r = RestClient.get(get_url) noko_doc = Nokogiri::HTML(r) node = noko_doc.css('div#movieSynopsis') Lita.logger.debug("Replying with #{node.text.strip}")