From 8694729b384fa41a299cbad08595f8e09051b0a6 Mon Sep 17 00:00:00 2001 From: Matchu Date: Tue, 9 Feb 2021 16:16:46 -0800 Subject: [PATCH] Fix placeholder URLs in safeImageUrl Oops, I got distracted partway through typing the domain, lol! They point to a real place now, lol! (not a very helpful place, but at least the real one I intended! :p) --- src/app/util.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/util.js b/src/app/util.js index 240189b..7405cef 100644 --- a/src/app/util.js +++ b/src/app/util.js @@ -126,7 +126,7 @@ export function safeImageUrl(urlString) { `safeImageUrl could not parse URL: ${urlString}. Returning a placeholder.` ) ); - return "https://impress-openneo.net/__error__URL-was-not-parseable__"; + return "https://impress-2020.openneo.net/__error__URL-was-not-parseable__"; } if (url.origin === "http://images.neopets.com") { @@ -144,7 +144,7 @@ export function safeImageUrl(urlString) { `upgrade it to HTTPS: ${urlString}. Returning a placeholder.` ) ); - return "https://impress-openneo.net/__error__URL-was-not-HTTPS__"; + return "https://impress-2020.openneo.net/__error__URL-was-not-HTTPS__"; } return url.toString();