We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6cdb386 commit 2da490fCopy full SHA for 2da490f
app/src/main/java/io/xpipe/app/rdp/RemminaRdpClient.java
@@ -24,6 +24,16 @@ private List<String> toStrip() {
24
@Override
25
public void launch(RdpLaunchConfig configuration) throws Exception {
26
RdpConfig c = configuration.getConfig();
27
+
28
+ // Remmina does not support RemoteApps
29
+ if (c.get("remoteapplicationprogram").isPresent()) {
30
+ var freerdp = new FreeRdpClient();
31
+ if (freerdp.isAvailable()) {
32
+ freerdp.launch(configuration);
33
+ return;
34
+ }
35
36
37
var l = new HashSet<>(c.getContent().keySet());
38
toStrip().forEach(l::remove);
39
if (l.size() == 2 && l.contains("username") && l.contains("full address")) {
0 commit comments