Skip to content

Commit 83c5bdc

Browse files
authored
Update index.ts
1 parent ebc71e1 commit 83c5bdc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

api/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { getScreenshot } from "./_lib/puppeteer";
22

33
module.exports = async (req, res) => {
4-
if (process.env.demo == "yes") return res.status(403).send("The public instance of this API is now unavailable. You can deploy your own instance for free on Vercel here: https://s.vercel.app/deploy.");
4+
if (process.env.demo == "yes") return res.status(403).send("The public instance of this API is currently disabled. You can deploy your own instance for free on Vercel here: https://s.vercel.app/deploy.");
55
if (!req.query.url) return res.status(400).send("No url query specified.");
66
if (!checkUrl(req.query.url)) return res.status(400).send("Invalid url query specified.");
77
try {

0 commit comments

Comments
 (0)