X Tutup
Skip to content

Commit f91e12a

Browse files
botamochi0x12alts
authored andcommitted
🐛 Remove duplicated slash in path to user profile
Fixed slash duplication in the path component to every user profile by removing trailing slash inside the constant `originalItchio`. The bug is caused by a double slash in the path, for example, `https://itch.io//profile/the-user-name`.
1 parent 31d8d2f commit f91e12a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/common/constants/urls.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const originalItchio = "https://itch.io/";
1+
const originalItchio = "https://itch.io";
22
const itchio = process.env.WHEN_IN_ROME || originalItchio;
33
const manual = "https://itch.io/docs/itch";
44
const itchRepo = "https://github.com/itchio/itch";

0 commit comments

Comments
 (0)
X Tutup