mirror of
https://github.com/xpipe-io/xpipe.git
synced 2026-07-08 11:30:42 +00:00
Fixes
This commit is contained in:
@@ -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();
|
||||
|
||||
Vendored
+2
@@ -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
|
||||
|
||||
|
||||
Generated
+1
-1
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user