mirror of
https://github.com/xpipe-io/xpipe.git
synced 2024-11-21 23:20:23 +00:00
Fixes [stage]
This commit is contained in:
parent
4bf33d7e59
commit
9090c128e9
3 changed files with 3 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
@ -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
|
2
version
2
version
|
@ -1 +1 @@
|
|||
10.0-4
|
||||
10.0-5
|
||||
|
|
Loading…
Reference in a new issue