1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-06-12 22:57:38 +02:00

Getting latest RNCamera to work with Android

This commit is contained in:
Laurent Cozic
2019-06-14 22:45:35 +01:00
parent ff257060d1
commit c3f20d3ebc
5 changed files with 10 additions and 1 deletions

View File

@ -364,6 +364,7 @@ class ScreenHeaderComponent extends Component {
const addFolderChildren = (folders, pickerItems, indent) => {
folders.sort((a, b) => {
if (!a || !b) return -1; // No idea why "a" was undefined at one point
return a.title.toLowerCase() < b.title.toLowerCase() ? -1 : +1;
});