diff --git a/app/Entities/Episode.php b/app/Entities/Episode.php index 9556b3e94dddcfd2c6d677a84e0dafb0dd82e0ec..8760dd4a65b739f6b9ffdad2d7ae2aa1ff6f8767 100644 --- a/app/Entities/Episode.php +++ b/app/Entities/Episode.php @@ -231,7 +231,7 @@ class Episode extends Entity $this->attributes['transcript_file_path'] = save_media( $transcriptFile, - $this->getPodcast() + 'podcasts/' . $this->getPodcast() ->name, $this->attributes['slug'] . '-transcript', ); @@ -248,7 +248,7 @@ class Episode extends Entity $this->attributes['chapters_file_path'] = save_media( $chaptersFile, - $this->getPodcast() + 'podcasts/' . $this->getPodcast() ->name, $this->attributes['slug'] . '-chapters', );