You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We already had an issue with orphaned attachment and while writing the vb5 module I had the same issue with posts. As a simple solution is possible for nearly all modules it should be added. After the prepare_insert_array (also after the log call) simply add
// An orphaned post which isn't associated with any thread. We can't handle those for several reasons so trick themif($insert_array['tid'] < 1)
{
$this->increment_tracker('posts');
$output->print_progress('end');
return0;
}
Ofc modified for the module (tid and posts replaced with the correct variables)
The text was updated successfully, but these errors were encountered:
We already had an issue with orphaned attachment and while writing the vb5 module I had the same issue with posts. As a simple solution is possible for nearly all modules it should be added. After the
prepare_insert_array
(also after the log call) simply addOfc modified for the module (tid and posts replaced with the correct variables)
The text was updated successfully, but these errors were encountered: