diff --git a/app/src/main/java/io/xpipe/app/storage/DataStorage.java b/app/src/main/java/io/xpipe/app/storage/DataStorage.java index 0c4965a9..bb04ff4f 100644 --- a/app/src/main/java/io/xpipe/app/storage/DataStorage.java +++ b/app/src/main/java/io/xpipe/app/storage/DataStorage.java @@ -372,7 +372,7 @@ public abstract class DataStorage { .toList(); var toAdd = newChildren.stream() .filter(nc -> { - if (nc.getStore() == null) { + if (nc == null || nc.getStore() == null) { return false; } diff --git a/lang/app/strings/translations_en.properties b/lang/app/strings/translations_en.properties index 8399271e..8101e24d 100644 --- a/lang/app/strings/translations_en.properties +++ b/lang/app/strings/translations_en.properties @@ -479,3 +479,4 @@ isOnlySupportedLimit=is only supported with a professional license when having m areOnlySupportedLimit=are only supported with a professional license when having more than $COUNT$ connections enabled=Enabled enableGitStoragePtbDisabled=Git synchronization is disabled for public test builds to prevent usage with regular release git repositories and to discourage using a PTB build as your daily driver. +copyId=Copy ID \ No newline at end of file diff --git a/version b/version index 5263e8f5..92d41c2f 100644 --- a/version +++ b/version @@ -1 +1 @@ -10.0-4 +10.0-5