Skip to content

Commit

Permalink
Don’t change behavior
Browse files Browse the repository at this point in the history
  • Loading branch information
mxcl committed Dec 6, 2022
1 parent 1c87047 commit a8a27bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/hooks/useOffLicense.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ function key(stowage: Stowage) {
} else {
fn += stowage.extname
}
return rv.join(fn).string
return rv.join(fn).string.slice(1)
}

function url(stowage: Stowage) {
return new URL(`https://dist.tea.xyz${key(stowage)}`)
return new URL(`https://dist.tea.xyz/${key(stowage)}`)
}

0 comments on commit a8a27bc

Please sign in to comment.