[READ-ONLY] Mirror of https://github.com/probablykasper/starchart. GitHub star history graph starchart.kasper.space
chart github github-api github-star graph history star star-history stargazers stars
0

Configure Feed

Select the types of activity you want to include in your feed.

Make full GitHub URLs work

authored by

SuperLlama88888 and committed by
GitHub
(Mar 9, 2025, 9:49 PM +1100) 3ac8f855 3f65ef0c

+1
+1
src/routes/RepoInput.svelte
··· 10 10 async function parseOwnerField() { 11 11 const slashIndex = owner.indexOf('/') 12 12 if (slashIndex >= 0) { 13 + owner = owner.replace(/^https?:\/\//, "").replace("github.com/", "") 13 14 const newOwner = owner.slice(0, slashIndex) 14 15 const newRepo = owner.slice(slashIndex + 1) 15 16 owner = newOwner