Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
LarsBergqvist committed Nov 25, 2023
1 parent ef02f8d commit 22cc7c2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div class="audio-wrapper">
<div *ngIf="currentUrlToPlay" [ngClass]="{'scroll-left': isPlaying === true }" class="now-playing"
<div *ngIf="currentUrlToPlay" class="now-playing"
(click)="onOpenDetails()">
<span class="clickable">
{{currentUrlToPlay}}
Expand Down
1 change: 1 addition & 0 deletions src/app/components/audio-player/audio-player.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ export class AudioPlayerComponent implements OnInit {
)
.subscribe(async (message: PlayAudioMessage) => {
if (!message) return;
if (!message.url) return;
this.episodeId = message.episodeId;
this.channelId = message.channelId;
if (this.episodeId) {
Expand Down

0 comments on commit 22cc7c2

Please sign in to comment.