mirror of
https://github.com/ad-aures/castopod.git
synced 2026-04-02 14:29:11 +02:00
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.
This commit is contained in:
parent
3b5ce93c1b
commit
441052af8d
1 changed files with 1 additions and 1 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue