|
@@ -196,9 +196,11 @@ function maybeRedirectToWelcomePage(options) {
|
196
|
196
|
// if close page is enabled redirect to it, without further action
|
197
|
197
|
if (config.enableClosePage) {
|
198
|
198
|
if (options.feedbackSubmitted)
|
199
|
|
- window.location.pathname = "close.html";
|
|
199
|
+ window.location.pathname = "close.html?guest="
|
|
200
|
+ + APP.tokenData.isGuest;
|
200
|
201
|
else
|
201
|
|
- window.location.pathname = "close2.html";
|
|
202
|
+ window.location.pathname = "close2.html?guest="
|
|
203
|
+ + APP.tokenData.isGuest;
|
202
|
204
|
return;
|
203
|
205
|
}
|
204
|
206
|
|