Bug 121073

Summary: When switching from 0.11.0 (kde 3.5) to svn, i lost some of the jabber contacts authorization (/!\ icon)
Product: [Unmaintained] kopete Reporter: kaouete <kaouete>
Component: generalAssignee: Kopete Developers <kopete-bugs-null>
Status: RESOLVED FIXED    
Severity: normal    
Priority: NOR    
Version First Reported In: unspecified   
Target Milestone: ---   
Platform: Compiled Sources   
OS: Linux   
Latest Commit: Version Fixed/Implemented In:
Sentry Crash Report:

Description kaouete 2006-01-30 23:49:00 UTC
Version:           svn (using KDE KDE 3.5.0)
Installed from:    Compiled From Sources
OS:                Linux

Since i switched to svn (from the version in kde 3.5, 0.11.0 if i am right) (i kept my conf from the last version) i got a strange behavior on some of my contacts :

some (not all ! maybe one was ok) were marked with a /!\ (exclamation) on the icon and were shown as offline,
no of the authorization option (request, send, remove) were available.
I needed to remove them and add them to reask authorization and have it work right :/
Comment 1 Michaƫl Larouche 2006-01-31 21:00:12 UTC
SVN commit 504330 by mlarouche:

BUG: 121073. Enable Request authorisation in Jabber when the contact subscruiption is none.

 M  +1 -1      jabbercontact.cpp  


--- branches/work/kopete/dev-0.12/kopete/protocols/jabber/jabbercontact.cpp #504329:504330
@@ -148,7 +148,7 @@
 	{
 		resendAuthAction->setEnabled(true);
 	}
-	else if( mRosterItem.subscription().type() == XMPP::Subscription::To )
+	else if( mRosterItem.subscription().type() == XMPP::Subscription::To || mRosterItem.subscription().type() == XMPP::Subscription::None )
 	{
 		requestAuthAction->setEnabled(true);
 	}