Skip to content

Commit

Permalink
Temporarily hide warning for missing spotify integration
Browse files Browse the repository at this point in the history
FL550 committed Sep 3, 2020
1 parent 01a379e commit 5224a53
Showing 3 changed files with 95 additions and 95 deletions.
180 changes: 90 additions & 90 deletions dist/spotify-card.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/spotify-card.js.map

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions src/spotify-card.ts
Original file line number Diff line number Diff line change
@@ -141,7 +141,7 @@ export class SpotifyCard extends LitElement {
this.config = _config;
}

async connectedCallback(): Promise<void> {
connectedCallback(): void {
super.connectedCallback();
this.doSubscribeEntities();
this.updateSpotcast();
@@ -338,10 +338,10 @@ export class SpotifyCard extends LitElement {
if (!this.isSpotcastInstalled()) {
warning = this.showWarning(localize('common.show_missing_spotcast'));
}
// if (!this._spotify_installed) {
// warning = this.showWarning(localize('common.show_missing_spotify'));
// }

if (!this._spotify_installed) {
warning = this.showWarning(localize('common.show_missing_spotify'));
}

// Display loading screen if no content available yet
let content = html`<div>Loading...</div>`;

0 comments on commit 5224a53

Please sign in to comment.