fixed pixiv sources

This commit is contained in:
albert
2011-09-30 13:27:22 -04:00
parent 641da03250
commit 2287bc8d61
5 changed files with 14 additions and 28 deletions

View File

@@ -26,7 +26,11 @@ module Sources
end
def artist_record
Artist.other_names_match(artist_name)
if artist_name.present?
Artist.other_names_match(artist_name)
else
nil
end
end
protected