We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ac8e341 + e4f8c1b commit c68f81dCopy full SHA for c68f81d
app/Importer/AssetImporter.php
@@ -44,7 +44,7 @@ protected function handle($row)
44
foreach ($this->customFields as $customField) {
45
$customFieldValue = $this->array_smart_custom_field_fetch($row, $customField);
46
47
- if ($customFieldValue) {
+ if (!is_null($customFieldValue)) {
48
if ($customField->field_encrypted == 1) {
49
$this->item['custom_fields'][$customField->db_column_name()] = Crypt::encrypt($customFieldValue);
50
$this->log('Custom Field '.$customField->name.': '.Crypt::encrypt($customFieldValue));
0 commit comments