[tuxdroid-svn] r5952 - software_suite_v3/software/plugin/plugin-skype/branches/in_out_plugin/execut
Status: Beta
Brought to you by:
ks156
From: jerome <c2m...@c2...> - 2009-12-08 12:35:19
|
Author: jerome Date: 2009-12-08 13:12:15 +0100 (Tue, 08 Dec 2009) New Revision: 5952 Modified: software_suite_v3/software/plugin/plugin-skype/branches/in_out_plugin/executables/communicator.py Log: * Fixed a bug resuming a call. Modified: software_suite_v3/software/plugin/plugin-skype/branches/in_out_plugin/executables/communicator.py =================================================================== --- software_suite_v3/software/plugin/plugin-skype/branches/in_out_plugin/executables/communicator.py 2009-12-08 11:01:28 UTC (rev 5951) +++ software_suite_v3/software/plugin/plugin-skype/branches/in_out_plugin/executables/communicator.py 2009-12-08 12:12:15 UTC (rev 5952) @@ -608,8 +608,7 @@ thread = threading.Thread(target=self.OnOutgoingCallRefused, args = [Call.PartnerHandle, ]) thread.start() #Resume last call. - if self.call != None: - self.call.Resume() + Call.Finish() |