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
1 changed files with 1 additions and 1 deletions

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