diff options
| author | Fuwn <[email protected]> | 2025-06-11 23:52:43 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-06-11 23:52:43 -0700 |
| commit | 1bc4488a06db88597327ecc855c5b70a7ddc55ce (patch) | |
| tree | ded544d953d4b62fc4365c2758d75f02efe7d625 /src/lib/Media/links.ts | |
| parent | fix: Migrate localStorage.removeItem to localforage for anime and manga stores (diff) | |
| download | due.moe-1bc4488a06db88597327ecc855c5b70a7ddc55ce.tar.xz due.moe-1bc4488a06db88597327ecc855c5b70a7ddc55ce.zip | |
style: Reformat using latest formatting
Diffstat (limited to 'src/lib/Media/links.ts')
| -rw-r--r-- | src/lib/Media/links.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/Media/links.ts b/src/lib/Media/links.ts index 626e892a..209afb28 100644 --- a/src/lib/Media/links.ts +++ b/src/lib/Media/links.ts @@ -42,10 +42,10 @@ export const outboundLink = ( return search ? `https://myanimelist.net/anime.php?q=${title}&cat=anime` : media.idMal - ? `https://myanimelist.net/anime/${media.idMal}` - : `https://myanimelist.net/anime.php?q=${encodeURIComponent( - media.title.native || media.title.english || media.title.romaji - )}&cat=anime`; + ? `https://myanimelist.net/anime/${media.idMal}` + : `https://myanimelist.net/anime.php?q=${encodeURIComponent( + media.title.native || media.title.english || media.title.romaji + )}&cat=anime`; } } }; |