Skip to content

Commit

Permalink
Fixed When the MINIO_BROWSER_REDIRECT_URL parameter contains path, t…
Browse files Browse the repository at this point in the history
…he console cannot be accessed normally.
  • Loading branch information
polaris-phecda committed May 22, 2023
1 parent b753597 commit 89ec1af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions restapi/configure_console_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,14 +59,14 @@ func Test_parseSubPath(t *testing.T) {
args: args{
v: "route",
},
want: "/route",
want: "/route/",
},
{
name: "No trailing slashes",
args: args{
v: "/route",
},
want: "/route",
want: "/route/",
},
}
for _, tt := range tests {
Expand Down

0 comments on commit 89ec1af

Please sign in to comment.