Browse Source

Skip formatting for cashtag in status text (#3275)

Resolve #3270
closed-social-glitch-2
Yamagishi Kazutoshi 7 years ago
committed by Eugen Rochko
parent
commit
f937cad68f
2 changed files with 12 additions and 0 deletions
  1. +4
    -0
      app/lib/extractor.rb
  2. +8
    -0
      spec/lib/formatter_spec.rb

+ 4
- 0
app/lib/extractor.rb View File

@ -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

+ 8
- 0
spec/lib/formatter_spec.rb View File

@ -46,6 +46,14 @@ RSpec.describe Formatter do
end
end
context 'with cashtag' do
let(:local_text) { 'Hello world $AAPL' }
it 'skip cashtag' do
expect(subject).to match '<p>Hello world $AAPL</p>'
end
end
context 'with reblog' do
let(:local_status) { Fabricate(:status, account: account, reblog: Fabricate(:status, text: 'Hello world', account: account)) }

Loading…
Cancel
Save