1
0
mirror of https://github.com/Syncplay/syncplay synced 2025-03-18 08:33:29 +00:00

Don't send a message if VLC is not running

This commit is contained in:
Etoh 2014-02-17 21:32:12 +00:00
parent 0a6cf7e02d
commit 38d240d135

View File

@ -448,7 +448,7 @@ while running == true do
-- handle write mode
if (responsebuffer) then
if (responsebuffer and running == true) then
vlc.net.send( fd, responsebuffer )
responsebuffer = ""
end