fix: save transcript and chapters files to podcasts folder

This commit is contained in:
Yassine Doghri 2021-06-11 09:06:06 +00:00
parent 8d9bba4e9f
commit 63f49c719f
No known key found for this signature in database
GPG Key ID: 3E7F89498B960C9F
1 changed files with 2 additions and 2 deletions

View File

@ -231,7 +231,7 @@ class Episode extends Entity
$this->attributes['transcript_file_path'] = save_media( $this->attributes['transcript_file_path'] = save_media(
$transcriptFile, $transcriptFile,
$this->getPodcast() 'podcasts/' . $this->getPodcast()
->name, ->name,
$this->attributes['slug'] . '-transcript', $this->attributes['slug'] . '-transcript',
); );
@ -248,7 +248,7 @@ class Episode extends Entity
$this->attributes['chapters_file_path'] = save_media( $this->attributes['chapters_file_path'] = save_media(
$chaptersFile, $chaptersFile,
$this->getPodcast() 'podcasts/' . $this->getPodcast()
->name, ->name,
$this->attributes['slug'] . '-chapters', $this->attributes['slug'] . '-chapters',
); );