You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@ia3andy it looks like we are using some built in Util from Quarkus Core?
/** * Normalizes the path and the returned path starts with a slash and if {@code trailingSlash} is set to {@code true} then it * will also end in a slash. */privatestaticStringnormalizePath(Stringpath, booleantrailingSlash) {
StringnormalizedPath = UriNormalizationUtil.toURI(path, trailingSlash).getPath();
returnnormalizedPath.startsWith("/") ? normalizedPath : "/" + normalizedPath;
}
From Zulip could you make sure we add the decode
RFC3986.decodeURIComponent(context.normalizedPath(), false);
in QuinoaThe text was updated successfully, but these errors were encountered: