diff options
author | Claire <claire.github-309c@sitedethib.com> | 2021-02-22 19:36:03 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-22 19:36:03 +0100 |
commit | 4aa860b65bd796b09dc0ceffa1fdd7de31060a34 (patch) | |
tree | 8850793f3118de3a91e2e224bcec9651e023acd0 /app/controllers/accounts_controller.rb | |
parent | 8792128f38e19b0d7882468a4f1f9362b98793a0 (diff) | |
parent | 6ae04d990c50c12e171fc2a3d2593fa42d9c4c9c (diff) |
Merge pull request #1501 from ClearlyClaire/glitch-soc/merge-upstream
Merge upstream changes
Diffstat (limited to 'app/controllers/accounts_controller.rb')
-rw-r--r-- | app/controllers/accounts_controller.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/controllers/accounts_controller.rb b/app/controllers/accounts_controller.rb index dfe94af7d..ab7e1f077 100644 --- a/app/controllers/accounts_controller.rb +++ b/app/controllers/accounts_controller.rb @@ -136,15 +136,15 @@ class AccountsController < ApplicationController end def media_requested? - request.path.split('.').first.ends_with?('/media') && !tag_requested? + request.path.split('.').first.end_with?('/media') && !tag_requested? end def replies_requested? - request.path.split('.').first.ends_with?('/with_replies') && !tag_requested? + request.path.split('.').first.end_with?('/with_replies') && !tag_requested? end def tag_requested? - request.path.split('.').first.ends_with?(Addressable::URI.parse("/tagged/#{params[:tag]}").normalize) + request.path.split('.').first.end_with?(Addressable::URI.parse("/tagged/#{params[:tag]}").normalize) end def cached_filtered_status_page |