It seems I have some misunderstanding with the media import by url in the importexport plugin of SW6.
I have URIs to the images in my csv file. I use the command bin/console import:entity -p ./product_import.csv $(date -d "+1 day" +%Y-%m-%d) bck-produkte
They are fetched correctly from the MediaSerializer
When the ProductSerializer serializes the $entity, it tries to getMediaUrls($entity) in the ProductSerializer
Both media and coverMedia have been downloaded already and look like given in the screenshot:
When the getMediaUrls($entity) now tries to get the urls, there is an undefined array key error. ->
In ProductSerializer.php line 368:
[ErrorException]
Warning: Undefined array key "url"
I already step debugged through the whole process, but I did not find any place where something might be missing.
Is my error reporting level to high or is this bad design or is it just monday?
Thanks for your help.