Eugen Rochko
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
app/controllers/accounts_controller.rb
|
|
@ -129,11 +129,11 @@ class AccountsController < ApplicationController |
|
|
|
end |
|
|
|
|
|
|
|
def media_requested? |
|
|
|
request.path.ends_with?('/media') |
|
|
|
request.path.ends_with?('/media') && !tag_requested? |
|
|
|
end |
|
|
|
|
|
|
|
def replies_requested? |
|
|
|
request.path.ends_with?('/with_replies') |
|
|
|
request.path.ends_with?('/with_replies') && !tag_requested? |
|
|
|
end |
|
|
|
|
|
|
|
def tag_requested? |
|
|
|