Set httpTimeout to 10000ms instead of 10ms

This commit is contained in:
0xboobface 2018-09-10 17:44:42 +02:00
parent 527f5f61ff
commit dd316070a5
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ public class Settings {
public boolean singlePlayer = true;
public boolean localRecording = true;
public int httpPort = 8080;
public int httpTimeout = 10;
public int httpTimeout = 10000;
public String httpServer = "localhost";
public String recordingsDir = System.getProperty("user.home") + File.separator + "ctbrec";
public String mediaPlayer = "/usr/bin/mpv";