Use filename comparison when both Notes don't have modified/created

This commit is contained in:
Vishesh Handa
2020-03-01 14:19:26 +01:00
parent b199e4ef74
commit b5f7a24b1f

View File

@ -62,7 +62,7 @@ class SortingMode {
return -1;
}
if (bDt == null || aDt == null) {
return 0;
return b.fileName.compareTo(a.fileName);
}
return bDt.compareTo(aDt);
};
@ -79,7 +79,7 @@ class SortingMode {
return -1;
}
if (bDt == null || aDt == null) {
return 0;
return b.fileName.compareTo(a.fileName);
}
return bDt.compareTo(aDt);
};