Fixes [stage]

This commit is contained in:
crschnick 2024-06-15 19:18:36 +00:00
parent 4bf33d7e59
commit 9090c128e9
3 changed files with 3 additions and 2 deletions

View file

@ -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;
}

View file

@ -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

View file

@ -1 +1 @@
10.0-4
10.0-5