Skip to content
This repository has been archived by the owner on Jul 21, 2024. It is now read-only.

Commit

Permalink
+ 支持提醒Refresh Token已失效
Browse files Browse the repository at this point in the history
  • Loading branch information
eritpchy committed Sep 19, 2021
1 parent 2e4e811 commit 510183d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/main/java/net/sf/webdav/WebDavServletBean.java
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,9 @@ protected void service(HttpServletRequest req, HttpServletResponse resp)
return;
}

if (_store == null) {
LOG.error("refresh_token is not valid");
}
try {
Principal userPrincipal = getUserPrincipal(req);
transaction = _store.begin(userPrincipal, req, resp);
Expand Down

0 comments on commit 510183d

Please sign in to comment.