Skip to content
This repository has been archived by the owner on Dec 5, 2022. It is now read-only.

Commit

Permalink
return true if status is not an 4xx
Browse files Browse the repository at this point in the history
  • Loading branch information
jbellmann committed Feb 15, 2016
1 parent 504383e commit 5251cd3
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,10 @@ public boolean isTokenValid(String token) {
}

} catch (Throwable t) {
// how to handle this?
// how to handle this? For now, do not delete the token
return true;
}
return false;
return true;
}

}

0 comments on commit 5251cd3

Please sign in to comment.