diff --git a/index.html b/index.html
index 2dab109..efe54d8 100644
--- a/index.html
+++ b/index.html
@@ -6841,7 +6841,8 @@
Your Characters
// Just use 'fetch' as normal and this proxy will be used automatically.
// Note: I was originally trying a normal fetch and then only falling back to this CORS proxy if it failed, but the problem with that is that this would hit the endpoint twice, which may have side effects, and the user might not want that.
// I may eventually have to add manual "exemptions" to skip proxying certain URLs that don't need it - like huggingface models, for example, since we could start to become bandwidth limited.
- const proxiedUrl = "https://opencharacters-cors-proxy.joe64.repl.co?url=" + encodeURIComponent(url);
+ // EDIT: Moved to Glitch since Replit raised prices to an absurd $6/month for a 0.25 vCPU machine in Jan 2024 (no more "Always On" machines - only "Deployments" now).
+ const proxiedUrl = "https://opencharacters-cors-proxy.glitch.me?url=" + encodeURIComponent(url);
try {
if(typeof argumentsList[0] === "object") {
argumentsList[0] = new Request(proxiedUrl, argumentsList[0]);