fix url creation typo
This commit is contained in:
parent
6ca0796c8a
commit
005cf1d52b
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ const select = (state, props) => {
|
||||||
if (googleCachedUrl) {
|
if (googleCachedUrl) {
|
||||||
const actualUrl = decodeURIComponent(googleCachedUrl);
|
const actualUrl = decodeURIComponent(googleCachedUrl);
|
||||||
if (actualUrl) {
|
if (actualUrl) {
|
||||||
path = actualUrl;
|
path = actualUrl.replace(/:/g, '#');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue