1
0
Fork 0
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:
Nathan Youngman 2024-06-19 15:04:05 -06:00
parent e37f6f387c
commit 51f8a81cd9
No known key found for this signature in database

View file

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