Skip to content

Commit

Permalink
Release 1.2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
frwiqueueit committed Aug 31, 2020
1 parent 330dd43 commit f871445
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions ViewerRequest/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ async function handleRequest(request) {
}
else {
// Request can continue - we remove queueittoken form querystring parameter to avoid sharing of user specific token
if (queueitToken && validationResult.actionType) {
if (queueitToken && validationResult.actionType === "Queue") {
response.status = '302';
response.statusDescription = 'Found';
response.headers['location'] = [{
Expand All @@ -110,4 +110,4 @@ function getErrorText(e){
errorText = JSON.stringify(e);
}
return errorText;
}
}
4 changes: 2 additions & 2 deletions ViewerRequest/queueitHelpers.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const CLOUDFRONT_SDK_VERSION ="1.2.5";
const CLOUDFRONT_SDK_VERSION ="1.2.6";
const QueueIT = require("./sdk/queueit-knownuserv3-sdk.js");
exports.addKUPlatformVersion= function(redirectQueueUrl)
{
Expand All @@ -13,4 +13,4 @@ exports.configureKnownUserHashing= function() {
.digest('hex');
return hash;
};
}
}

0 comments on commit f871445

Please sign in to comment.