Bug 121073 - When switching from 0.11.0 (kde 3.5) to svn, i lost some of the jabber contacts authorization (/!\ icon)
Summary: When switching from 0.11.0 (kde 3.5) to svn, i lost some of the jabber contac...
Status: RESOLVED FIXED
Alias: None
Product: kopete
Classification: Unmaintained
Component: general (other bugs)
Version First Reported In: unspecified
Platform: Compiled Sources Linux
: NOR normal
Target Milestone: ---
Assignee: Kopete Developers
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-01-30 23:49 UTC by kaouete
Modified: 2006-01-31 21:00 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed/Implemented In:
Sentry Crash Report:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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);
 	}