I'm trying to edit the module so that it automatically creates a menu item for each feed based on the field in the feed.
I've successfully had it post to the menu but I have 2 problems:
1. When the feed is updated (Not just cron running but the actual XML file is updated), it duplicates the menu items for ALL the feed items, not just those changing.
2. It was meant to post it under a menu I created but it is posting under navigation menu instead.

This is a copy of what I changed:

feedapi\feedapi_node\feedapi_node.module
Lines 304-309

$type = node_get_types('type', $node->type);
if ($type->has_title) {
$node->title = $feed_item->title;
$node->menu[link_title] = $feed_item->title;
$node->menu[parent] = 'menu-albums:0'; ----That is the data that appears on the submit form for the menu item I want to post under. I'm not sure if thats correct however.
}

If someone can help me out with this it'd be great!