[tuxdroid-svn] r5766 - software_suite_v3/software/plugin/plugin-facebook/branches/october_release/s
Status: Beta
Brought to you by:
ks156
From: jerome <c2m...@c2...> - 2009-10-23 14:29:04
|
Author: jerome Date: 2009-10-23 16:28:44 +0200 (Fri, 23 Oct 2009) New Revision: 5766 Modified: software_suite_v3/software/plugin/plugin-facebook/branches/october_release/src/com/kysoh/plugins/facebook/FacebookFunctions.java software_suite_v3/software/plugin/plugin-facebook/branches/october_release/src/com/kysoh/plugins/facebook/FacebookPlugin.java Log: * Fixed a dummy bug. Modified: software_suite_v3/software/plugin/plugin-facebook/branches/october_release/src/com/kysoh/plugins/facebook/FacebookFunctions.java =================================================================== --- software_suite_v3/software/plugin/plugin-facebook/branches/october_release/src/com/kysoh/plugins/facebook/FacebookFunctions.java 2009-10-23 13:38:08 UTC (rev 5765) +++ software_suite_v3/software/plugin/plugin-facebook/branches/october_release/src/com/kysoh/plugins/facebook/FacebookFunctions.java 2009-10-23 14:28:44 UTC (rev 5766) @@ -442,6 +442,7 @@ } catch (FacebookException e) { + e.printStackTrace(); //Return false in case of exception, prompt auth was never started. return false; } Modified: software_suite_v3/software/plugin/plugin-facebook/branches/october_release/src/com/kysoh/plugins/facebook/FacebookPlugin.java =================================================================== --- software_suite_v3/software/plugin/plugin-facebook/branches/october_release/src/com/kysoh/plugins/facebook/FacebookPlugin.java 2009-10-23 13:38:08 UTC (rev 5765) +++ software_suite_v3/software/plugin/plugin-facebook/branches/october_release/src/com/kysoh/plugins/facebook/FacebookPlugin.java 2009-10-23 14:28:44 UTC (rev 5766) @@ -238,7 +238,7 @@ } else { - this.throwMessage("{0} messages from {1}", sender, emailsBySender.get(sender)); + this.throwMessage("{0} messages from {1}", emailsBySender.get(sender), sender); } } } |