replace all instances of "ends_with?" with "end_with?" (#15745)
The "ends_with?" method is just a Rails alias of Ruby's "end_with?" method. Using the latter makes the code less brittle.
This commit is contained in:
parent
fc145de238
commit
c9e8e1739c
5 changed files with 9 additions and 9 deletions
|
@ -37,7 +37,7 @@ class MediaProxyController < ApplicationController
|
|||
end
|
||||
|
||||
def version
|
||||
if request.path.ends_with?('/small')
|
||||
if request.path.end_with?('/small')
|
||||
:small
|
||||
else
|
||||
:original
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue