We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e508fcf commit 9cd5d1bCopy full SHA for 9cd5d1b
ggpht.com/index.js
@@ -4,11 +4,11 @@ const S = /s\d+-([cp])/;
4
if (!location.href.includes("4096")) {
5
const dest = location.href.replace(S, "s4096-$1");
6
if (dest !== location.href) {
7
- location.href = dest;
+ location.replace(dest);
8
}
9
10
const dest2 = location.href.replace(/w\d+-h\d+/, "w4096");
11
if (dest2 !== location.href) {
12
- location.href = dest2;
+ location.replace(dest2);
13
14
0 commit comments