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:
Justin Tracey
2021-02-19 08:56:14 +00:00
committed by GitHub
parent fc145de238
commit c9e8e1739c
5 changed files with 9 additions and 9 deletions

View File

@ -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