Remove references to groups from PostpProcess and Backfill (fixes issue #398)

This commit is contained in:
DariusIII
2018-02-20 15:33:59 +01:00
parent 7be62477f2
commit 2b0a497d85
3 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -280,7 +280,7 @@ class PostProcess
*/
public function processAdditional(&$nntp, $groupID = '', $guidChar = ''): void
{
(new ProcessAdditional(['Echo' => $this->echooutput, 'NNTP' => $nntp, 'Settings' => $this->pdo, 'Groups' => $this->groups, 'NameFixer' => $this->nameFixer, 'Nfo' => $this->Nfo]))->start($groupID, $guidChar);
(new ProcessAdditional(['Echo' => $this->echooutput, 'NNTP' => $nntp, 'Settings' => $this->pdo, 'NameFixer' => $this->nameFixer, 'Nfo' => $this->Nfo]))->start($groupID, $guidChar);
}
/**