Merge pull request #837 from Robbt/fix_podcast_publish

added null to try to solve missing arguments bug for Podcast Publish function
This commit is contained in:
Lucas Bickel 2019-07-16 06:28:02 +02:00 committed by GitHub
commit 26df390418
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -111,7 +111,7 @@ class Application_Service_PodcastEpisodeService extends Application_Service_Thir
* @throws Exception
* @throws PropelException
*/
private function _buildEpisode($podcastId, $url, $guid, $publicationDate, $title, $description) {
private function _buildEpisode($podcastId, $url, $guid, $publicationDate, $title = NULL, $description = NULL) {
$e = new PodcastEpisodes();
$e->setDbPodcastId($podcastId);
$e->setDbDownloadUrl($url);