FIX: memoization in PostAnalyzer.raw_mentions (#5172)
Due to a missing 's' when assigning the computed value to @raw_mentions, the raw_mentions function in PostAnalyzer would never retrieve a memoized value.
This commit is contained in:
parent
d7d9923b8e
commit
90dd1609eb
|
@ -60,7 +60,7 @@ class PostAnalyzer
|
|||
|
||||
raw_mentions.compact!
|
||||
raw_mentions.uniq!
|
||||
@raw_mention = raw_mentions
|
||||
@raw_mentions = raw_mentions
|
||||
end
|
||||
|
||||
# from rack ... compat with ruby 2.2
|
||||
|
|
Loading…
Reference in New Issue