Merge pull request #65 from MickGe/patch-1

This commit is contained in:
Samar Dhwoj Acharya 2021-11-08 16:10:52 -06:00 committed by GitHub
commit c87b9bf9e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ function addDarkmodeWidget() {
}
function fetchData() {
const repo = document.getElementById('q').value;
const repo = document.getElementById('q').value.replaceAll(' ','');
const re = /[-_\w]+\/[-_.\w]+/;
const urlRepo = getRepoFromUrl();