adium 2275:ad85d31457ce: Drop down to sending NICKSERV IDENTIFY ...
commits at adium.im
commits at adium.im
Sat May 23 16:46:23 UTC 2009
details: http://hg.adium.im/adium/rev/ad85d31457ce
revision: 2275:ad85d31457ce
author: Zachary West <zacw at adium.im>
date: Sat May 23 12:46:07 2009 -0400
Drop down to sending NICKSERV IDENTIFY <password> instead of NICKSERV IDENTIFY <nickname> <password>. Fixes #12067.
A fair amount of services-setups aren't smart enough to allow for it, so don't try and be fancy in identifying (imo) the proper way.
diffstat:
Plugins/Purple Service/ESIRCAccount.m | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diffs (12 lines):
diff -r 3f8437e5f31c -r ad85d31457ce Plugins/Purple Service/ESIRCAccount.m
--- a/Plugins/Purple Service/ESIRCAccount.m Thu May 21 16:06:10 2009 -0400
+++ b/Plugins/Purple Service/ESIRCAccount.m Sat May 23 12:46:07 2009 -0400
@@ -298,7 +298,7 @@
} else if ([self.host rangeOfString:@"gamesurge" options:NSCaseInsensitiveSearch].location != NSNotFound) {
[self sendRawCommand:[NSString stringWithFormat:@"PRIVMSG AuthServ at Services.GameSurge.net :AUTH %@ %@", name, inPassword]];
} else {
- [self sendRawCommand:[NSString stringWithFormat:@"NICKSERV identify %@ %@", name, inPassword]];
+ [self sendRawCommand:[NSString stringWithFormat:@"NICKSERV identify %@", inPassword]];
}
}
More information about the commits
mailing list