Skip to content

Commit

Permalink
Release 3.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
frwiqueueit committed Aug 28, 2020
1 parent 838bd2d commit 508c23c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Handlers/KnownUserApacheHandler.lua
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ local function handle(customerId, secretKey, config, isIntegrationConfig, reques
end
else
-- Request can continue - we remove queueittoken form querystring parameter to avoid sharing of user specific token
if (fullUrl ~= currentUrlWithoutQueueitToken and validationResult.actionType ~= nil) then
if (fullUrl ~= currentUrlWithoutQueueitToken and validationResult.actionType == "Queue") then
request_rec.err_headers_out["Location"] = currentUrlWithoutQueueitToken
return apache2.HTTP_MOVED_TEMPORARILY
end
Expand Down
2 changes: 1 addition & 1 deletion SDK/UserInQueueService.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ local utils = require("Utils")
local userInQueueStateCookieRepository = require("UserInQueueStateCookieRepository")

local svc = {
SDK_VERSION = "v3-lua-" .. "3.6.2",
SDK_VERSION = "v3-lua-" .. "3.6.3",
TokenValidationResult = {
create = function(isValid, errorCode)
local model = {
Expand Down

0 comments on commit 508c23c

Please sign in to comment.