nuxt / movies

🍿 A TMDB client built with Nuxt 3
https://movies.nuxt.space
MIT License
2k stars 284 forks source link

fix: imdb url #43

Closed krisantuswanandi closed 1 year ago

krisantuswanandi commented 1 year ago

Current IMDb url is imdb.com/movie/:id for all IMDb links, when it should be imdb.com/title/:id for media and imdb.com/name/:id for person.

I noticed that they use prefix tt for media and nm for person so I use that to differentiate between the two for the current solution.

Maybe a better approach would be to add a new imdbType prop to ExternalLinks component, but I'll let you guys decide.