added null to try to fix missing arguments

This commit is contained in:
Robbt 2019-07-04 10:21:35 -04:00
parent 977b5c002c
commit 6fe75028e3

View file

@ -111,7 +111,7 @@ class Application_Service_PodcastEpisodeService extends Application_Service_Thir
* @throws Exception * @throws Exception
* @throws PropelException * @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 = new PodcastEpisodes();
$e->setDbPodcastId($podcastId); $e->setDbPodcastId($podcastId);
$e->setDbDownloadUrl($url); $e->setDbDownloadUrl($url);