Skip to content

Commit

Permalink
fix(url): fix time parameter (#386)
Browse files Browse the repository at this point in the history
  • Loading branch information
pwambach committed Jul 14, 2020
1 parent d23bcba commit 38378dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/scripts/libs/globe-url-parameter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export function parseUrl(): UrlHashState | null {
}

// globe view values
const values = splitted.slice(1, 7).map(str => parseFloat(str));
const values = splitted.slice(1, 8).map(str => parseFloat(str));

if (values.some(num => isNaN(num))) {
return null;
Expand Down

0 comments on commit 38378dc

Please sign in to comment.