Skip to content
Snippets Groups Projects
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
No related branches found
No related tags found
No related merge requests found
......@@ -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,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment