Archived
1
0

small insignificant fix

This commit is contained in:
cathugger 2018-01-24 16:21:51 +00:00
parent 9fba95b58d
commit 6b039265d9

View File

@ -1395,8 +1395,8 @@ func (self *nntpConnection) scrapeGroup(daemon *NNTPDaemon, conn *textproto.Conn
if err != nil {
// something bad happened
log.Println(self.name, "failed to obtain root post", refid, err)
// trying with another article isn't bad idea
err = nil
// it fails only when REALLY bad stuff happens
return
}
}
}
@ -1413,8 +1413,8 @@ func (self *nntpConnection) scrapeGroup(daemon *NNTPDaemon, conn *textproto.Conn
if err != nil {
// something bad happened
log.Println(self.name, "failed to obtain article", msgid, err)
// trying with another article isn't bad idea
err = nil
// it fails only when REALLY bad stuff happens
return
}
}
}