Browse Source

Merge pull request #1643 from slingamn/auditorium_zerotime

fix #1642
tags/v2.7.0-rc1
Shivaram Lingamneni 3 years ago
parent
commit
df49137aca
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      irc/channel.go

+ 1
- 1
irc/channel.go View File

@@ -819,9 +819,9 @@ func (channel *Channel) Join(client *Client, key string, isSajoin bool, rb *Resp
819 819
 
820 820
 	var message utils.SplitMessage
821 821
 	respectAuditorium := givenMode == modes.Mode(0) && channel.flags.HasMode(modes.Auditorium)
822
+	message = utils.MakeMessage("")
822 823
 	// no history item for fake persistent joins
823 824
 	if rb != nil && !respectAuditorium {
824
-		message = utils.MakeMessage("")
825 825
 		histItem := history.Item{
826 826
 			Type:        history.Join,
827 827
 			Nick:        details.nickMask,

Loading…
Cancel
Save