|
|
@@ -1401,13 +1401,14 @@ public class Jump2View {
|
|
|
* 幂动科技
|
|
|
*/
|
|
|
public void goMiDong(Activity activity, Object o){
|
|
|
- if(SheepApp.getInstance().isShowMidong() &&
|
|
|
- !CommonUtil.getInstance().initMiDong(activity, DataUtil.getInstance().getUserId())){
|
|
|
+ if(!SheepApp.getInstance().isShowMidong()){
|
|
|
G.showToast("敬请期待");
|
|
|
return;
|
|
|
}
|
|
|
- Intent intent = new Intent(activity, ActMiDong.class);
|
|
|
- activity.startActivity(intent);
|
|
|
- MI_DONG_VIEW.onEvent();
|
|
|
+ if(SheepApp.getInstance().isInitMidong()){
|
|
|
+ Intent intent = new Intent(activity, ActMiDong.class);
|
|
|
+ activity.startActivity(intent);
|
|
|
+ MI_DONG_VIEW.onEvent();
|
|
|
+ }
|
|
|
}
|
|
|
}
|