Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit 80c51988 authored by tobiasKaminsky's avatar tobiasKaminsky
Browse files

- fix wrong simplifying


- fix oC: no quota should not fail login

Signed-off-by: default avatartobiasKaminsky <tobias@kaminsky.me>
parent 8d473209
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -46,6 +46,6 @@ public class FileUtils {
     */
    public static boolean isValidName(String fileName) {

        return fileName.contains(PATH_SEPARATOR);
        return !fileName.contains(PATH_SEPARATOR);
    }
}