We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6485fc5 commit 1d911e6Copy full SHA for 1d911e6
worker.js
@@ -9,7 +9,7 @@ async function handleRequest(request) {
9
const url = new URL(request.url);
10
const id = url.searchParams.get("id");
11
// Get the list of URLs from the raw text file
12
- const urlList = await fetch('https://gist.githubusercontent.com/developeranaz/e3ed847f88459106498b615375c2b902/raw')
+ const urlList = await fetch('https://raw.githubusercontent.com/developeranaz/Serverless-URL-Shortner/main/urls.txt')
13
.then(response => response.text())
14
.then(text => text.split('\n'))
15
.catch(error => {
0 commit comments