Skip to content

Commit

Permalink
Update random.js
Browse files Browse the repository at this point in the history
  • Loading branch information
gauthammariyappan authored Apr 9, 2024
1 parent 3d39bb1 commit 0c84a7a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions random.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,11 @@ function getAppKey(){
const currentTime = new Date().getSeconds();
const isEven = currentTime % 2 === 0;
if (isEven) {
sessionStorage.setItem('appKey', '27a4a87d6e27e86a7cd64de89cb3ec8d');//Delivery Site
appKey = '27a4a87d6e27e86a7cd64de89cb3ec8d';//Delivery Site
} else {
sessionStorage.setItem('appKey', 'c012eed591418a9aa7e1655a6bb83039' );//zylker
appKey = 'c012eed591418a9aa7e1655a6bb83039';//zylker
}
sessionStorage.setItem('appKey', appKey);
}
return appKey;

Expand Down

0 comments on commit 0c84a7a

Please sign in to comment.