Skip to content

Commit

Permalink
Fix asset paths
Browse files Browse the repository at this point in the history
  • Loading branch information
caendesilva committed Sep 20, 2024
1 parent f71fd0c commit 0cf17a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions _pages/showcase/podcast.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ function initializePlayer() {
title: 'The Deep Dive: HydePHP',
artist: 'AI-Generated Podcast',
cover: '{{ asset('logo.png') }}',
src: "https://git.desilva.se/temp/a101bb58-f54a-4b06-a2fd-4db7d4bafdee/podcast/introduction.wav",
src: "{{ asset('podcast/introduction.wav') }}",
},
chapters: [
{ title: 'Introduction', startTime: 0, endTime: 60 },
Expand All @@ -262,7 +262,7 @@ function initializePlayer() {
}
// Load and display transcript
fetch("https://git.desilva.se/temp/a101bb58-f54a-4b06-a2fd-4db7d4bafdee/podcast/introduction.srt")
fetch("{{ asset('podcast/introduction.srt') }}")
.then(response => response.text())
.then(srt => {
const lines = parseSRT(srt);
Expand Down

0 comments on commit 0cf17a8

Please sign in to comment.