Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/EionRobb/skype4pidgin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEion Robb <eion@robbmob.com>2011-08-23 09:55:25 +0400
committerEion Robb <eion@robbmob.com>2011-08-23 09:55:25 +0400
commit9f35213ae0388631b714444aae460dbeda46b105 (patch)
tree1475d6b4372e7eae5f6613f8ab797bf61fda4cfe /skype_messaging_carbon2.c
parenta49b690ca4fe7d003a500233985e293c739377d1 (diff)
Fix for the plugin not connecting to Skype on OSX. Big thanks to beau.croteau for narrowing down the problem to CFRunLoop :)
Diffstat (limited to 'skype_messaging_carbon2.c')
-rwxr-xr-xskype_messaging_carbon2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/skype_messaging_carbon2.c b/skype_messaging_carbon2.c
index 28a5394..204d6ef 100755
--- a/skype_messaging_carbon2.c
+++ b/skype_messaging_carbon2.c
@@ -393,7 +393,7 @@ void SendSkypeCommand(CFStringRef command)
CFSTR("SKSkypeAPICommand"),
NULL,
userInfo,
- FALSE);
+ TRUE);
CFRelease(command);
CFRelease(id_number);
@@ -417,7 +417,7 @@ void DisconnectFromSkype(void)
CFSTR("SKSkypeAPIDetachRequest"),
NULL,
userInfo,
- FALSE);
+ TRUE);
client_id = 0;
}