Open GoogleCodeExporter opened 9 years ago
I've figure out the issue of crashing. It is a bug in AsyncWeiboRunner class.
How should I submit bugfix / commit to the code?
Original comment by jackche...@cloudpillar.com.hk
on 29 May 2012 at 1:22
AsyncWeiboRunner的大概第52行:
new Thread(){
@Override public void run() {
try {
String resp = mWeibo.request(context, url, params, httpMethod, mWeibo.getAccessToken());
listener.onComplete(resp);
} catch (WeiboException e) {
listener.onError(e);
}
}
}.run();
.run()改成.start();
貌似是个低级错误哦。
Original comment by yaoxing...@gmail.com
on 13 Sep 2012 at 2:42
Original issue reported on code.google.com by
jackche...@cloudpillar.com.hk
on 21 May 2012 at 9:00