mirror of
https://github.com/linuxserver/core.git
synced 2026-02-20 05:07:19 +08:00
Fixed error in Windows when server is restarted then the run button is clicked in the output pane from a previous run.
This commit is contained in:
parent
b20805f86e
commit
da07e791ec
2
node_modules/vfs-local/localfs.js
generated
vendored
2
node_modules/vfs-local/localfs.js
generated
vendored
@ -2094,7 +2094,7 @@ module.exports = function setup(fsOptions) {
|
||||
// Kill the session with the same name before starting a new one
|
||||
if (options.kill) {
|
||||
session = sessions[options.session];
|
||||
if (session)
|
||||
if (session && session.pty)
|
||||
session.pty.kill();
|
||||
|
||||
if (!options.command)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user