aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/screens/moments/CameraScreen.tsx11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/screens/moments/CameraScreen.tsx b/src/screens/moments/CameraScreen.tsx
index 75638c40..fa1bdd10 100644
--- a/src/screens/moments/CameraScreen.tsx
+++ b/src/screens/moments/CameraScreen.tsx
@@ -185,11 +185,12 @@ const CameraScreen: React.FC<CameraScreenProps> = ({route, navigation}) => {
showGIFFailureAlert(() => navigateToCropper(media.path));
} else {
// is this a video?
- if (media.duration !== null) {
- navigateToCaptionScreen(true, media.path);
- } else {
- navigateToCropper(media.path);
- }
+ // if (media.duration !== null) {
+ // navigateToCaptionScreen(true, media.path);
+ // } else {
+ // navigateToCropper(media.path);
+ // }
+ navigateToCropper(media.path);
}
}}
/>