Sfoglia il codice sorgente

[콘텐츠상세][Common] 인스타그램, 페이스북 인앱브라우저 실행

Hasemi 6 anni fa
parent
commit
4935af675a

+ 2 - 8
app/src/main/java/kr/co/zumo/app/lifeplus/view/screen/contents/ContentsPresenter.java

@@ -665,14 +665,8 @@ public class ContentsPresenter extends ContentsBasePresenter<ContentsModel, ICon
   }
 
   private void linkDeep(String url, String deepUrl) {
-    try {
-      Intent intent = new Intent(Intent.ACTION_VIEW);
-      intent.setData(Uri.parse(deepUrl));
-      view.getActivity().startActivity(intent);
-    } catch (Exception e) {
-      shipToWeb(url, ScreenID.WEB_FROM_CONTENTS);
-      go(ScreenID.WEB_FROM_CONTENTS);
-    }
+    shipToWeb(url, ScreenID.WEB_FROM_CONTENTS);
+    go(ScreenID.WEB_FROM_CONTENTS);
   }
 
   private void shipToWeb(String webUrl, int screenId) {