Archived
1
0

nil check

This commit is contained in:
Jeff Becker 2017-04-23 07:58:17 -04:00
parent fbafc56b4c
commit fdb6831064

View File

@ -439,7 +439,7 @@ func (self *nntpConnection) checkMIMEHeaderNoAuth(daemon *NNTPDaemon, hdr textpr
reason = "poster's pubkey is banned" reason = "poster's pubkey is banned"
ban = true ban = true
return return
} else if !self.policy.AllowsNewsgroup(newsgroup) { } else if self.policy != nil && !self.policy.AllowsNewsgroup(newsgroup) {
reason = "newsground not allowed by feed policy" reason = "newsground not allowed by feed policy"
ban = true ban = true
} else if !(ValidMessageID(msgid) || (reference != "" && !ValidMessageID(reference))) { } else if !(ValidMessageID(msgid) || (reference != "" && !ValidMessageID(reference))) {