Respond to missing articles using thread_cache_removearticle in message.inc.php.

This commit is contained in:
Retro_Guy 2024-09-28 14:31:38 -07:00
parent 78d4003133
commit df79eb256e
1 changed files with 1 additions and 1 deletions

View File

@ -281,7 +281,7 @@ function message_read($id, $bodynum = 0, $group = "")
// should check, if the thread stored in the spool-directory
// also doesnt't contain that article...
thread_cache_removearticle($group, $id);
file_put_contents($debug_log, "\n" . logging_prefix() . " " . $config_name . " Unable to retrieve: " . $group . ":" . $id . " from local server", FILE_APPEND);
file_put_contents($debug_log, "\n" . logging_prefix() . " " . $config_name . " Unable to retrieve: " . $group . ":" . $id . " from local server. Removing...", FILE_APPEND);
return false;
} else {
}