Archived
1
0

Merge pull request #156 from cathugger/master

small insignificant fix
This commit is contained in:
Jeff 2018-01-24 11:26:10 -05:00 committed by GitHub
commit 9f17b7add1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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