Skip to content

Commit 48c5423

Browse files
download media fix
1 parent e894e94 commit 48c5423

File tree

5 files changed

+5
-10
lines changed

5 files changed

+5
-10
lines changed

android/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ android {
9898
minSdkVersion rootProject.ext.minSdkVersion
9999
targetSdkVersion rootProject.ext.targetSdkVersion
100100
versionCode 1
101-
versionName "3.3.2"
101+
versionName "3.3.3"
102102
/** Add this for react-native-camera */
103103
missingDimensionStrategy 'react-native-camera', 'general'
104104
multiDexEnabled true

android/fastlane/Fastfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ platform :android do
5454
firebase_app_distribution(
5555
app: "1:235373697524:android:8b3becf8d8ff9be3a0c1a1",
5656
groups: "reactnative",
57-
release_notes: "React-Native ios build for MRN-906, MRN-900",
57+
release_notes: "React-Native android build for MRN-906",
5858
apk_path: "../android/app/build/outputs/apk/release/app-release.apk",
5959
firebase_cli_token: "1//0gfTJ_oWJ0mHNCgYIARAAGBASNwF-L9IrYZM4cUIV5EB8gVnSvtMC6Q7aAtgrgG8R1ybhSY1Np_5r5UuZu28N144_weOQDyONcW4",
6060
)

ios/fastlane/Fastfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ lane :qa_firebase do
2828
firebase_app_distribution(
2929
app: "1:235373697524:ios:0e9bd66b524978a0a0c1a1",
3030
groups: "reactnative",
31-
release_notes: "React-Native ios build for MRN-906, MRN-900",
31+
release_notes: "React-Native ios build for MRN-906",
3232
firebase_cli_path: "/usr/local/bin/firebase",
3333
firebase_cli_token: "1//0g53oUKW5j5bJCgYIARAAGBASNwF-L9Ir7Ei_6NzWEsyHOMMXytlesfgXShhLeJWRwbcf2MC3e7BaC5dwYlUZB-_osuQFsxy0Du0"
3434
)

ios/mirrorfly_rn.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -674,7 +674,7 @@
674674
"$(inherited)",
675675
"@executable_path/Frameworks",
676676
);
677-
MARKETING_VERSION = 3.3.2;
677+
MARKETING_VERSION = 3.3.3;
678678
OTHER_LDFLAGS = (
679679
"$(inherited)",
680680
"-ObjC",
@@ -707,7 +707,7 @@
707707
"$(inherited)",
708708
"@executable_path/Frameworks",
709709
);
710-
MARKETING_VERSION = 3.3.2;
710+
MARKETING_VERSION = 3.3.3;
711711
OTHER_LDFLAGS = (
712712
"$(inherited)",
713713
"-ObjC",

src/hooks/useMediaProgress.js

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -162,11 +162,6 @@ const useMediaProgress = ({ uploadStatus = 0, downloadStatus = 0, msgId }) => {
162162
};
163163

164164
const handleDownload = async () => {
165-
if (blockedStatus) {
166-
promptUnblockModal();
167-
return;
168-
}
169-
170165
try {
171166
const { source = {}, downloadJobId = '' } = getMediaProgress(msgId) || {};
172167
setMediaStatus(mediaStatusConstants.DOWNLOADING);

0 commit comments

Comments
 (0)