Skip to content

Commit

Permalink
[jellyfin] Make configuration link clickable in Main UI
Browse files Browse the repository at this point in the history
See openhab/openhab-webui#2996

Signed-off-by: Jimmy Tanagra <[email protected]>
  • Loading branch information
jimtng committed Jan 10, 2025
1 parent a1fc363 commit 00ceafb
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,8 @@ public void initialize() {
jellyApiClient.setBaseUrl(getServerUrl());
if (config.token.isBlank() || config.userId.isBlank()) {
updateStatus(ThingStatus.OFFLINE, ThingStatusDetail.CONFIGURATION_PENDING,
"Navigate to <your local openhab url>/jellyfin/" + this.getThing().getUID().getId() + " to login.");
"Navigate to http(s)://<YOUROPENHAB>:<YOURPORT>/jellyfin/" + this.getThing().getUID().getId()
+ " to login.");
return;
}
jellyApiClient.setAccessToken(config.token);
Expand Down

0 comments on commit 00ceafb

Please sign in to comment.