Fix featured hashtag URL being interpreted as media or with_replies (#12048)
Fix #12034lolsob-rspec
parent
36199a7bd6
commit
28c19c66ba
|
@ -129,11 +129,11 @@ class AccountsController < ApplicationController
|
||||||
end
|
end
|
||||||
|
|
||||||
def media_requested?
|
def media_requested?
|
||||||
request.path.ends_with?('/media')
|
request.path.ends_with?('/media') && !tag_requested?
|
||||||
end
|
end
|
||||||
|
|
||||||
def replies_requested?
|
def replies_requested?
|
||||||
request.path.ends_with?('/with_replies')
|
request.path.ends_with?('/with_replies') && !tag_requested?
|
||||||
end
|
end
|
||||||
|
|
||||||
def tag_requested?
|
def tag_requested?
|
||||||
|
|
Loading…
Reference in New Issue