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 0c84a7a commit aadf3da
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions random.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,7 @@ function getRandomName() {
function getAppKey(){
let appKey = sessionStorage.getItem('appKey');
if (!appKey) {
const currentTime = new Date().getSeconds();
const isEven = currentTime % 2 === 0;
if (isEven) {
if (Math.random() < 0.5) {
appKey = '27a4a87d6e27e86a7cd64de89cb3ec8d';//Delivery Site
} else {
appKey = 'c012eed591418a9aa7e1655a6bb83039';//zylker
Expand Down

0 comments on commit aadf3da

Please sign in to comment.