diff --git a/app/logical/sources/strategies/lofter.rb b/app/logical/sources/strategies/lofter.rb index c91e45850..c5c136365 100644 --- a/app/logical/sources/strategies/lofter.rb +++ b/app/logical/sources/strategies/lofter.rb @@ -74,10 +74,10 @@ module Sources end def tags - tags = page&.search(".info .tag, .main .tag a, .tagarea") + tags = page&.search(".info .tag, .main .tag a, .tagarea, .m-info .tags .tag") tags.to_a.map do |tag| - [tag.text, tag.attr("href")] + [tag.text.gsub(/^● /, ""), tag.attr("href")] end end