From 849aaa6e5fbee2013033e9ddd91762a3ce83a1c4 Mon Sep 17 00:00:00 2001 From: Florian Scholdei Date: Mon, 4 Mar 2024 09:33:05 +0100 Subject: [PATCH] Add percent sign error to known issues Pushed-by: Florian Scholdei Co-authored-by: Florian Scholdei --- docs/en/known-issues.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/en/known-issues.md b/docs/en/known-issues.md index d7fd0f4cec..76c65e9987 100644 --- a/docs/en/known-issues.md +++ b/docs/en/known-issues.md @@ -59,3 +59,10 @@ public class DemoHook { } ``` + +## Percent signs are not encoded correctly + +If a branch, path or file with a percent sign in its name is called directly via url, the server responds with an error 400. +This is due to incorrect encoding of percent signs in the URI, which itself is used for client side routing. + +It also applies to forwarding in editor-plugin after creating a file with the above-mentioned properties. The actual file is created correctly though.