Skip to content

Commit 1d911e6

Browse files
Update worker.js
1 parent 6485fc5 commit 1d911e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

worker.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ async function handleRequest(request) {
99
const url = new URL(request.url);
1010
const id = url.searchParams.get("id");
1111
// Get the list of URLs from the raw text file
12-
const urlList = await fetch('https://gist.githubusercontent.com/developeranaz/e3ed847f88459106498b615375c2b902/raw')
12+
const urlList = await fetch('https://raw.githubusercontent.com/developeranaz/Serverless-URL-Shortner/main/urls.txt')
1313
.then(response => response.text())
1414
.then(text => text.split('\n'))
1515
.catch(error => {

0 commit comments

Comments
 (0)