Unverified Commit 63f49c71 authored by Yassine Doghri's avatar Yassine Doghri
Browse files

fix: save transcript and chapters files to podcasts folder

parent 8d9bba4e
Loading
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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',
        );