Skip to content

Commit

Permalink
Merge pull request #7389 from DmitryLitvintsev/9.2-rb14130
Browse files Browse the repository at this point in the history
wevdav: fix redirect path
  • Loading branch information
svemeyer authored Oct 17, 2023
2 parents d466c36 + 08c0ac9 commit 04a6cac
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1693,7 +1693,7 @@ public HttpTransfer(PnfsHandler pnfs, Subject subject,

var request = ServletRequest.getRequest();
request.setAttribute(TRANSACTION_ATTRIBUTE, getTransaction());
_requestPath = ServletRequest.stripToPath(request.getRequestURI());
_requestPath = ServletRequest.stripToPath(request.getRequestURL().toString());
}

protected ProtocolInfo createProtocolInfo(InetSocketAddress address) {
Expand Down

0 comments on commit 04a6cac

Please sign in to comment.