Skip to content

Commit

Permalink
fix travis
Browse files Browse the repository at this point in the history
  • Loading branch information
valentinMachado committed Sep 22, 2022
1 parent f4fc7db commit 026da88
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions client/src/bootstrap.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,13 @@ const addReceptionView = function () {
if (paramsUrl.has(ImuvConstants.URL_PARAMETER.ID_KEY)) {
const id = paramsUrl.get(ImuvConstants.URL_PARAMETER.ID_KEY);
let event = null;
let wrongParams = false;
const params = {};

switch (id) {
case ImuvConstants.URL_PARAMETER.EVENT.TELEPORT_AVATAR_WORLD.ID_VALUE:
event = ImuvConstants.URL_PARAMETER.EVENT.TELEPORT_AVATAR_WORLD;
//get params
let wrongParams = false;
const params = {};
for (const key in event.PARAMS_KEY) {
const paramsKey = encodeURI(event.PARAMS_KEY[key]);
if (!paramsUrl.has(paramsKey)) {
Expand Down

0 comments on commit 026da88

Please sign in to comment.