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 b00348e commit 9987255Copy full SHA for 9987255
src/lib/stores/launcher.ts
@@ -20,7 +20,11 @@ const connectToLauncher = () => {
20
ws.on('disconnect', () => {
21
launcherOpen.set(false);
22
});
23
- }).catch(console.error);
+
24
+ ws.on('connect_error', () => {
25
+ console.warn("Could not contact user's local Satisfactory Mod Manager install");
26
+ });
27
+ }).catch(console.warn);
28
};
29
30
const open = (link: string, fallback?: () => void) => {
0 commit comments