diff options
Diffstat (limited to 'app')
-rw-r--r-- | app/lib/extractor.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app/lib/extractor.rb b/app/lib/extractor.rb index c582b5e4d..957364293 100644 --- a/app/lib/extractor.rb +++ b/app/lib/extractor.rb @@ -56,4 +56,8 @@ module Extractor tags.each { |tag| yield tag[:hashtag], tag[:indices].first, tag[:indices].last } if block_given? tags end + + def extract_cashtags_with_indices(_text) + [] # always returns empty array + end end |