Remove hash from url

url.split(#)[0]
main
汪心禾 4 years ago
parent 9a53d48f41
commit b132d3b3cf
No known key found for this signature in database
GPG Key ID: 0792B3266B499A3B

@ -137,7 +137,7 @@ class Driver {
}
open(url) {
return new Site(url, this)
return new Site(url.split('#')[0], this)
}
log(message, source = 'driver') {

Loading…
Cancel
Save