do not return null refresh token

This commit is contained in:
2025-07-30 21:48:46 +02:00
parent 3d38e7df1e
commit bd0285d312
2 changed files with 2 additions and 2 deletions
@@ -56,7 +56,7 @@ public class OidcTokenResponse {
* @return the refresh token
*/
public String getRefresh_token() {
return refresh_token;
return refresh_token != null ? refresh_token : "";
}
/**