Merge pull request #26 from janza/master

Make sure title is set if h_tag_title() is empty
This commit is contained in:
Jaehyun Shin 2017-06-13 15:47:52 +09:00 committed by GitHub
commit 3b4ca84961
1 changed files with 3 additions and 2 deletions

View File

@ -16,11 +16,12 @@ defmodule Readability.TitleFinder do
case og_title(html_tree) do
"" ->
title = tag_title(html_tree)
h_title = h_tag_title(html_tree)
if good_title?(title) do
if good_title?(title) || h_title == "" do
title
else
h_tag_title(html_tree)
h_title
end
title when is_binary(title) ->
title