From 2fb68202a88f2abfc80d88d2237b2ba190af2905 Mon Sep 17 00:00:00 2001 From: ElnuDev Date: Sat, 12 Aug 2023 13:56:09 -0700 Subject: [PATCH] utils: remove link to issues page in nothuman error --- utils/src/error.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/utils/src/error.rs b/utils/src/error.rs index 0f2502b..992ff53 100644 --- a/utils/src/error.rs +++ b/utils/src/error.rs @@ -40,9 +40,7 @@ impl ResponseError for Error { Self::NotHuman { target } => format!( "It looks like you're accessing the Tatoeba API proxy from a script!\n\ Tatoeba CORS restrictions do not apply outside of browsers, so please access the API directly:\n\ - {target}\n\ - If you feel this is mistake, please open an issue:\n\ - https://codeberg.org/ElnuDev/tatoeba-api-rs"), + {target}"), _ => self.to_string(), }) }