File tree 3 files changed +2
-5
lines changed
WooCommerce/src/main/kotlin/com/woocommerce/android/media
3 files changed +2
-5
lines changed Original file line number Diff line number Diff line change 11
11
- [**] Product Creation AI V2: Milestone 1 which simplifies package photo flow and revamps UI. [https://github.com/woocommerce/woocommerce-android/issues/11800]
12
12
- [*] The more screen shows proper loading button statuses [https://github.com/woocommerce/woocommerce-android/pull/11968]
13
13
- [*] [Login] Improved login reliability by addressing some edge-case issues [https://github.com/woocommerce/woocommerce-android/pull/12033]
14
+ - [*] Fix an issue with image upload on devices running Android 8 and 9 [https://github.com/woocommerce/woocommerce-android/pull/12127]
14
15
15
16
19.5
16
17
-----
Original file line number Diff line number Diff line change @@ -135,10 +135,6 @@ object FileUploadUtils {
135
135
* @return A local {@link Uri} or null if the download failed
136
136
*/
137
137
private fun fetchMedia (context : Context , mediaUri : Uri ): Uri ? {
138
- if (MediaUtils .isInMediaStore(mediaUri)) {
139
- return mediaUri
140
- }
141
-
142
138
return try {
143
139
MediaUtils .downloadExternalMedia(context.applicationContext, mediaUri)
144
140
} catch (e: IllegalStateException ) {
Original file line number Diff line number Diff line change @@ -117,7 +117,7 @@ ext {
117
117
materialVersion = ' 1.6.1'
118
118
hiltJetpackVersion = ' 1.1.0'
119
119
wordPressUtilsVersion = ' 3.5.0'
120
- mediapickerVersion = ' 0.3.0 '
120
+ mediapickerVersion = ' 0.3.1 '
121
121
wordPressLoginVersion = ' 1.17.0'
122
122
aboutAutomatticVersion = ' 0.0.6'
123
123
automatticTracksVersion = ' 5.0.0'
You can’t perform that action at this time.
0 commit comments