Unverified Commit 441052af authored by Yassine Doghri's avatar Yassine Doghri
Browse files

fix(episode): replace guid's empty string value to null

New episodes were no longer published on some platforms: the item guid was no longer set for new
episodes.
parent 3b5ce93c
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -134,7 +134,7 @@ class EpisodeController extends BaseController
            'podcast_id' => $this->podcast->id,
            'title' => $this->request->getPost('title'),
            'slug' => $this->request->getPost('slug'),
            'guid' => '',
            'guid' => null,
            'audio_file' => $this->request->getFile('audio_file'),
            'description_markdown' => $this->request->getPost('description'),
            'image' => $image,