This commit is contained in:
crschnick
2026-06-20 13:37:50 +00:00
parent 899140b59d
commit bb66636ee4
3 changed files with 4 additions and 2 deletions
@@ -62,7 +62,7 @@ public class AppCache {
public static <T> T getNonNullMapEntry(String key, String mapKey, JavaType type, Supplier<T> notPresent) {
var mapType = TypeFactory.defaultInstance().constructMapLikeType(Map.class, TypeFactory.defaultInstance().constructType(String.class), type);
Map<String, T> map = getNonNull(key, mapType, () -> null);
if (map != null) {
if (map != null && map.containsKey(mapKey)) {
return map.get(mapKey);
} else {
return notPresent.get();
+2
View File
@@ -29,6 +29,8 @@ The latest release of the [apple container runtime](https://github.com/apple/con
- There are now multiple new UI themes available for you to choose from
- The API endpoints for /connection/... have been renamed to /store/...
- Add option to reinstall XPipe on Windows if an incremental update fails
- The network scan dialog now supports choosing the broadcast address
- File transfers in SFTP sessions now show the progress and speed
## Fixes
+1 -1
View File
@@ -1716,7 +1716,7 @@ useAsGatewayDescription=Whether to use the target host as a gateway for the crea
resolveIpAddresses=Resolve IP addresses
resolveIpAddressesDescription=Resolve found IPs to DNS names by using reverse DNS lookup
networkScanType=Connection type
networkScanTypeDescription=The type and ports of servers to look for
networkScanTypeDescription=The connection type and associated ports to look for
networkScanBroadcastAddress=Broadcast address
networkScanBroadcastAddressDescription=The address to ping to populate the available devices list
emptyDirectory=This directory looks to be empty