Fix compile warning

warning: doing a prefix match with globs is deprecated, invalid segment "pleroma*path"
This commit is contained in:
Mark Felder 2023-05-31 22:14:55 +00:00
parent 2b8bbb288c
commit f0e5f0e837
1 changed files with 2 additions and 2 deletions

View File

@ -996,8 +996,8 @@ defmodule Pleroma.Web.Router do
scope "/", Pleroma.Web.Fallback do
get("/registration/:token", RedirectController, :registration_page)
get("/:maybe_nickname_or_id", RedirectController, :redirector_with_meta)
match(:*, "/api/pleroma*path", LegacyPleromaApiRerouterPlug, [])
get("/api*path", RedirectController, :api_not_implemented)
match(:*, "/api/pleroma/*path", LegacyPleromaApiRerouterPlug, [])
get("/api/*path", RedirectController, :api_not_implemented)
get("/*path", RedirectController, :redirector_with_preload)
options("/*path", RedirectController, :empty)