From c5e97d675bd5f6f845a815818eb54aa57759b4d5 Mon Sep 17 00:00:00 2001 From: Daniel Bulant Date: Mon, 12 Dec 2022 17:01:55 +0100 Subject: [PATCH] test error --- src/routes/about/+page.svelte | 2 ++ src/routes/error/+page.ts | 3 +++ 2 files changed, 5 insertions(+) create mode 100644 src/routes/error/+page.ts diff --git a/src/routes/about/+page.svelte b/src/routes/about/+page.svelte index ba3f482..2769710 100644 --- a/src/routes/about/+page.svelte +++ b/src/routes/about/+page.svelte @@ -34,4 +34,6 @@

DISCLAIMER: This site isn't distributing any content and is using mangadex.org API. All of the site's requests are done client side, my servers aren't sharing any manga data. Website is open source, and I don't claim any copyright on the publications. If you believe in good faith you're downloading copyrighted content, file a DMCA at yourself, your operating system (as it took a part in the download), your ISP, your browser and all the free libraries that are used in any of the previous (made by volunteers), and then here. /satire

For DMCA requests, I recommend going to the mangadex page of the selected manga instead and reporting it there, as it will be taken down more quickly. You can of course report it to me and I'll block the page from viewing it, but it's trivial to remove that (1 required software installed to run this site, edit single line, run 2 more commands and you have bypassed the block), so I really recommend removing the source instead.

+ + Crash \ No newline at end of file diff --git a/src/routes/error/+page.ts b/src/routes/error/+page.ts new file mode 100644 index 0000000..8c26eb1 --- /dev/null +++ b/src/routes/error/+page.ts @@ -0,0 +1,3 @@ +export function load() { + throw new Error("This is a test error"); +} \ No newline at end of file