Sorry, I am being lazy and am not actually submitting a patch for this, but I will type out my fix.

simplefeed_item.module - Line 364: $item->taxonomy['tags'][1] = $tags;

This will only work if the vocab id of your import vocab is 1.

This should probably be replaced with something like:
if ($vid=variable_get('simplefeed_vocab',0)) {
$item->taxonomy['tags'][$vid] = $tags;
}

Comments

m3avrck’s picture

Status: Active » Fixed

This was fixed a few days ago, grab the latest dev version! THanks!

Anonymous’s picture

Status: Fixed » Closed (fixed)