mirror of
https://github.com/edgurgel/httparrot
synced 2025-04-05 08:12:31 -04:00
warning: negative steps are not supported in String.slice/2, pass 1..-1//1 instead
This commit is contained in:
parent
e37f6f387c
commit
51f8a81cd9
1 changed files with 1 additions and 1 deletions
|
@ -13,7 +13,7 @@ defmodule HTTParrot.PHandler do
|
|||
"""
|
||||
def allowed_methods(req, state) do
|
||||
path = :cowboy_req.path(req)
|
||||
path = String.slice(path, 1..-1)
|
||||
path = String.slice(path, 1..-1//1)
|
||||
{[String.upcase(path)], req, state}
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue