mirror of
https://github.com/xpipe-io/xpipe.git
synced 2026-08-22 09:16:29 +00:00
Fixes [stage]
This commit is contained in:
@@ -21,6 +21,7 @@ public class AppOpenArguments {
|
||||
private static final List<String> bufferedArguments = new ArrayList<>();
|
||||
|
||||
public static synchronized void init() {
|
||||
handleImpl(AppProperties.get().getArguments().getOpenArgs());
|
||||
handleImpl(bufferedArguments);
|
||||
bufferedArguments.clear();
|
||||
}
|
||||
|
||||
@@ -169,9 +169,9 @@ public class XPipeInstallation {
|
||||
if (OsType.getLocal().equals(OsType.MACOS)) {
|
||||
return path.getParent().getParent().getParent().toString();
|
||||
} else if (OsType.getLocal().equals(OsType.LINUX)) {
|
||||
return path.getParent().toString();
|
||||
return path.getParent().getParent().toString();
|
||||
} else {
|
||||
return path.getParent().toString();
|
||||
return path.getParent().getParent().toString();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user