Skip to content

Commit

Permalink
3.4.2
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Knaller <[email protected]>
  • Loading branch information
tknaller committed Jan 26, 2023
1 parent 788ea58 commit ee647ee
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
Empty file.
2 changes: 1 addition & 1 deletion bundles/org.openhab.binding.connectedcar/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>org.openhab.addons.bundles</groupId>
<artifactId>org.openhab.addons.reactor.bundles</artifactId>
<version>3.3.0-SNAPSHOT</version>
<version>3.4.2-SNAPSHOT</version>
</parent>

<artifactId>org.openhab.binding.connectedcar</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@

import com.google.gson.Gson;

import io.micrometer.core.lang.Nullable;

/**
* {@link IdentityManager} implements token creation and refreshing.
*
Expand Down Expand Up @@ -69,7 +71,7 @@ public String generateTokenSetId() {
/**
* Create the API access token
*/
public String createAccessToken(CombinedConfig config) throws ApiException {
public String createAccessToken(@Nullable CombinedConfig config) throws ApiException {
TokenSet tokens = getTokenSet(config.tokenSetId);
if (tokens.apiToken.isValid() && !tokens.apiToken.isExpired()) {
// Token is still valid
Expand Down

0 comments on commit ee647ee

Please sign in to comment.