Skip to content
This repository was archived by the owner on Jun 2, 2022. It is now read-only.

Commit d8c5961

Browse files
committed
Fix the redirect
1 parent 318ed31 commit d8c5961

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/drm/demo/DownloadServlet.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ protected void doGet(HttpServletRequest request,
6565
outStream.write(zipFile, 0, zipFile.length);
6666
outStream.close();
6767
} else {
68-
response.sendRedirect("/invoices.jsp?id=" + id);
68+
response.sendRedirect("/workflow.jsp?id=" + id);
6969
}
7070
}
7171

0 commit comments

Comments
 (0)