소스 검색

Merge pull request #459 from jrapala/removeDupedAddFlags

Fix #458 - Remove duped FLAG_ACTIVITY_NEW_TASK
Travis Nuttall 5 년 전
부모
커밋
ffc372e6e7
No account linked to committer's email address
1개의 변경된 파일0개의 추가작업 그리고 2개의 파일을 삭제
  1. 0
    2
      android/src/main/java/com/RNFetchBlob/RNFetchBlob.java

+ 0
- 2
android/src/main/java/com/RNFetchBlob/RNFetchBlob.java 파일 보기

@@ -121,8 +121,6 @@ public class RNFetchBlob extends ReactContextBaseJavaModule {
121 121
                  // All the activity to be opened outside of an activity
122 122
                 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
123 123
 
124
-                // All the activity to be opened outside of an activity
125
-                intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
126 124
                 // Validate that the device can open the file
127 125
                 PackageManager pm = getCurrentActivity().getPackageManager();
128 126
                 if (intent.resolveActivity(pm) != null) {