summarylogtreecommitdiffstats
path: root/spaces-240.patch
diff options
context:
space:
mode:
authorSean Enck2018-10-15 08:45:18 -0400
committerSean Enck2018-10-15 08:45:18 -0400
commit80e23e3c8c28e0a311ffcd2b4c7d0c40fa2e6317 (patch)
tree25c4286c7decc25983c67288adf7190f3ede1a6b /spaces-240.patch
parente9290468eac4285790682f337228e374ff4754cb (diff)
downloadaur-80e23e3c8c28e0a311ffcd2b4c7d0c40fa2e6317.tar.gz
new version released
Diffstat (limited to 'spaces-240.patch')
-rw-r--r--spaces-240.patch25
1 files changed, 0 insertions, 25 deletions
diff --git a/spaces-240.patch b/spaces-240.patch
deleted file mode 100644
index e89ecd2fcd64..000000000000
--- a/spaces-240.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-diff --git a/irc/client.go b/irc/client.go
-index d309102..0cafce8 100644
---- a/irc/client.go
-+++ b/irc/client.go
-@@ -811,15 +811,15 @@ func (client *Client) SendRawMessage(message ircmsg.IrcMessage) error {
- message = ircmsg.MakeMessage(nil, client.server.name, ERR_UNKNOWNERROR, "*", "Error assembling message for sending")
- line, _ := message.Line()
-
-- // if we used the trailing hack, we need to strip the final space we appended earlier on
-- if usedTrailingHack {
-- line = line[:len(line)-3] + "\r\n"
-- }
--
- client.socket.Write(line)
- return err
- }
-
-+ // if we used the trailing hack, we need to strip the final space we appended earlier on
-+ if usedTrailingHack {
-+ line = line[:len(line)-3] + "\r\n"
-+ }
-+
- client.server.logger.Debug("useroutput", client.nick, " ->", strings.TrimRight(line, "\r\n"))
-
- client.socket.Write(line)