[New] Added configurable cookie path in RestfulStrolchComponent

This commit is contained in:
Robert von Burg 2023-02-14 10:21:05 +01:00
parent 96ccb9e2e0
commit f81af240d1
Signed by: eitch
GPG Key ID: 75DB9C85C74331F7
1 changed files with 1 additions and 1 deletions

View File

@ -188,7 +188,7 @@ public class RestfulStrolchComponent extends StrolchComponent {
this.domain = configuration.getString(PARAM_DOMAIN, "");
if (this.domain.isEmpty())
this.domain = null;
this.path = configuration.getString(PARAM_DOMAIN, "");
this.path = configuration.getString(PARAM_PATH, "");
if (this.path.isEmpty())
this.path = null;
this.basicAuthEnabled = configuration.getBoolean(PARAM_BASIC_AUTH_ENABLED, true);