I think I found the problem, just a quick little change. If you edit your threads_import.php file line 773 has a block of code that looks like this:

PHP Code
$end = $end - (20 - $topic_count);
break; 

Change that, to this:

PHP Code
$end = $end - (20 - $topic_count);
$more = true;
break;