Skip to content

Commit

Permalink
Merge pull request #137 from jamebal/develop
Browse files Browse the repository at this point in the history
fix: 修复部分时候打开office文件提示无法保存的问题或者私密分享的office文件提示乱码的问题
  • Loading branch information
jamebal authored Jul 16, 2024
2 parents bba2edb + fa788c3 commit 2da37ae
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,7 @@ private static String renewJmalToken(HttpServletRequest request, HttpServletResp
Cookie cookie = new Cookie(JMAL_TOKEN, jmalToken);
cookie.setPath("/");
response.addCookie(cookie);
response.addHeader(JMAL_TOKEN, jmalToken);
setRefreshCookie(response, hashPassword, username, rememberMe);
}
return username;
Expand Down

0 comments on commit 2da37ae

Please sign in to comment.