We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a78f76a commit e8b1081Copy full SHA for e8b1081
src/android/ImagePicker.java
@@ -295,7 +295,7 @@ private void showMaxLimitWarning(boolean useFilePicker) {
295
private void showMaxLimitWarning(int deviceMaxLimit) {
296
String toastMsg = "The maximumImagesCount:" + this.maxImageCount +
297
" is greater than the device's max limit of images that can be selected from the MediaStore: " + deviceMaxLimit +
298
- ". Maximum number of images that can be selected is:" + deviceMaxLimit;
+ ". Maximum number of images that can be selected is: " + deviceMaxLimit;
299
300
(Toast.makeText(cordova.getContext(), toastMsg, Toast.LENGTH_LONG)).show();
301
}
0 commit comments