Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion syncplay/players/vlc.py
Original file line number Diff line number Diff line change
Expand Up @@ -528,7 +528,7 @@ def _createIntfFolder(vlcSyncplayInterfaceDir):
vlcoutputthread.start()
self.__playerController._vlcready.clear()
self._factory = VLCClientFactory(self.__playerController, self.vlcHasResponded, self.timeVLCLaunched, self.__process)
self.reactor.connectTCP('localhost', self.__playerController.vlcport, self._factory)
self.reactor.connectTCP('127.0.0.1', self.__playerController.vlcport, self._factory)

def _shouldListenForSTDOUT(self):
return not isWindows()
Expand Down
2 changes: 1 addition & 1 deletion syncplay/resources/lua/intf/syncplay.lua
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ local durationdelay = 500000 -- Pause for get_duration command etc for increased
local loopsleepduration = 2500 -- Pause for every event loop (uses microseconds)
local quitcheckfrequency = 20 -- Check whether VLC has closed every X loops

local host = "localhost"
local host = "127.0.0.1"
local port

local titlemultiplier = 604800 -- One week
Expand Down