diff options
| author | Fuwn <[email protected]> | 2024-01-24 21:59:10 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-01-24 21:59:10 -0800 |
| commit | 56a04f8e85f56cc4d2c5d6c85400a8687405e0fb (patch) | |
| tree | 53a9c2d420a25cb546b3f16a079287772c736bb5 /src | |
| parent | feat(schedule): skeleton loading (diff) | |
| download | due.moe-56a04f8e85f56cc4d2c5d6c85400a8687405e0fb.tar.xz due.moe-56a04f8e85f56cc4d2c5d6c85400a8687405e0fb.zip | |
feat(settings): add rate limit message
Diffstat (limited to 'src')
| -rw-r--r-- | src/routes/settings/+page.svelte | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/routes/settings/+page.svelte b/src/routes/settings/+page.svelte index bdb1c622..556f648c 100644 --- a/src/routes/settings/+page.svelte +++ b/src/routes/settings/+page.svelte @@ -14,6 +14,7 @@ import { options } from '$lib/Notification/options.js'; import tooltip from '$lib/Tooltip/tooltip'; import locale from '$stores/locale.js'; + import root from '$lib/Utility/root'; export let data; @@ -38,7 +39,16 @@ target="_blank" title={$locale().settings.tooltips.author} use:tooltip>@fuwn</a - > on AniList! + > + on AniList! + + <p /> + + <p> + <b>Notice:</b> + AniList has temporarily increased their API rate limits, so may experience more occasional rate limits + than usual, both on <a href={root('/')}>due.moe</a> and on AniList. + </p> </blockquote> {#if data.user === undefined} |