Removed logging and fix parameter variable

This commit is contained in:
Robbt 2019-01-13 11:46:55 -05:00
parent 2485e70bbe
commit 7177fc7bed
2 changed files with 2 additions and 3 deletions

View file

@ -133,7 +133,7 @@ class Application_Service_PodcastEpisodeService extends Application_Service_Thir
foreach($episodes as $episode) {
$podcast = $episode->getPodcast();
Logging::info($episode);
$this->_download($episode->getDbId(), $episode->getDbDownloadUrl(), $podcast->getDbTitle(), $this->_getAlbumOverride($podcast), $episode["title"]);
$this->_download($episode->getDbId(), $episode->getDbDownloadUrl(), $podcast->getDbTitle(), $this->_getAlbumOverride($podcast), $episode->getDbEpisodeTitle());
}
}