Skip to content

Commit a6b0209

Browse files
Made some changes to the pi main file to not put in undefined if there is no previous settings. Rebuilt the linux plugin
1 parent 4741436 commit a6b0209

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

Sources/pi/js/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ function connectElgatoStreamDeckSocket(port, pluginUUID, registerEvent, inInfo,
4040

4141
filelocation.value = settings.filelocation;
4242
filelocation.textContent = settings.filelocation;
43-
arguments.value = settings.arguments;
43+
arguments.value = settings.arguments ? settings.arguments : "";
4444
returnflag.checked = settings.returnflag;
4545

4646
} catch (err) {
528 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)