Fix error in list sync

This commit is contained in:
Timothy Warren 2018-11-27 15:37:16 -05:00
parent 5e3fb46159
commit 4c3f987b85
1 changed files with 5 additions and 0 deletions

View File

@ -264,6 +264,11 @@ final class SyncLists extends BaseCommand {
foreach ($potentialMappings as $mappingId)
{
if (\is_array($mappingId))
{
continue;
}
if (array_key_exists($mappingId, $includes['mappings']))
{
$malId = $includes['mappings'][$mappingId]['externalId'];