fixed initialization of RsConfigOptions

This commit is contained in:
csoler 2019-09-05 23:07:07 +02:00
parent 9bbd6d49df
commit bd0e4d7fba
No known key found for this signature in database
GPG Key ID: 7BCA522266C0804C

View File

@ -117,14 +117,13 @@ RsAccounts* rsAccounts = nullptr;
RsConfigOptions::RsConfigOptions()
: jsonApiPort(JsonApiServer::DEFAULT_PORT),
jsonApiBindAddress("127.0.0.1")
jsonApiBindAddress("127.0.0.1"),
autoLogin(false),
forcedPort(0),
udpListenerOnly(false),
outStderr(false),
debugLevel(5)
{
autoLogin = false;
forcedPort=0;
udpListenerOnly=false;
outStderr=false;
debugLevel=5;
}