diff --git a/mappers/file.inc b/mappers/file.inc index ce777ad54e7d97d43ff97ef0564857d22690ca39..2cc5dc3a6eb27f139f3bb892afd5c87ac6f06a4b 100644 --- a/mappers/file.inc +++ b/mappers/file.inc @@ -75,7 +75,13 @@ function file_feeds_set_target($source, $entity, $target, $value) { $i = 0; $field = isset($entity->$target) ? $entity->$target : array(); foreach ($value as $v) { - if ($file = $v->getFile($destination)) { + try { + $file = $v->getFile($destination); + } + catch (Exception $e) { + watchdog_exception('Feeds', $e, nl2br(check_plain($e))); + } + if ($file) { $field['und'][$i] = (array)$file; $field['und'][$i]['display'] = 1; // @todo: Figure out how to properly populate this field. if ($info['cardinality'] == 1) { diff --git a/plugins/FeedsParser.inc b/plugins/FeedsParser.inc index 7d1004f2f24b91d42bcf90875b4dd3bbba61da7a..5cdac88fff0c66691e0878917274855a7da2a9a7 100644 --- a/plugins/FeedsParser.inc +++ b/plugins/FeedsParser.inc @@ -368,7 +368,12 @@ class FeedsEnclosure extends FeedsElement { if (file_uri_target($destination)) { $destination = trim($destination, '/') . '/'; } - $file = file_save_data($this->getContent(), $destination . $filename); + try { + $file = file_save_data($this->getContent(), $destination . $filename); + } + catch (Exception $e) { + watchdog_exception('Feeds', $e, nl2br(check_plain($e))); + } } // We couldn't make sense of this enclosure, throw an exception.