[439] in BarnOwl Developers
[D-O-H] r569 - trunk/owl/perl/modules
daemon@ATHENA.MIT.EDU (asedeno@MIT.EDU)
Thu Oct 29 18:06:11 2009
Resent-From: nelhage@mit.edu
Resent-To: barnowl-dev-mtg@charon.mit.edu
To: dirty-owl-hackers@mit.edu
From: asedeno@MIT.EDU
Reply-to: dirty-owl-hackers@MIT.EDU
Date: Fri, 26 Jan 2007 14:47:08 -0500 (EST)
Author: asedeno
Date: 2007-01-26 14:47:04 -0500 (Fri, 26 Jan 2007)
New Revision: 569
Modified:
trunk/owl/perl/modules/jabber.pl
Log:
Fixing a typo. This was keeping us from replying to full jids of
people in the roster, since it was taking the full jid from the roster
entry instead of the argument.
Modified: trunk/owl/perl/modules/jabber.pl
===================================================================
--- trunk/owl/perl/modules/jabber.pl 2007-01-25 20:46:26 UTC (rev 568)
+++ trunk/owl/perl/modules/jabber.pl 2007-01-26 19:47:04 UTC (rev 569)
@@ -1382,7 +1382,7 @@
if(($roster->query($j, 'name') || $j->GetUserID()) eq $to) {
return $j->GetJID('full');
} elsif($j->GetJID('base') eq baseJID($to)) {
- return $j->GetJID('full');
+ return $jid->GetJID('full');
}
}