You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After code review WebUI is calling api/movie_list using movie_name parameter, thus putting all the input text box inside movie_name.
On the other hand CLI adding is doing some logic before adding the entry:
defmovie_list_add(options):
title,year=split_title_year(options.movie_title)console('Trying to lookup movie title: `{}`'.format(title))movie_lookup=lookup_movie(title=title,session=session,identifiers=options.identifiers)
and in addition CLI add is support identifier used to specify for example imdb_id or tmdb_id
IMHO the simplest way to support that would be to propose in the WebUi multiple input text boxes:
Movie Name (Mandatory)
Year (optionnal)
IMDB_ID (optionnal)
TMDB_ID (optionnal)
For now i'm relying only on CLI pour adding new entries
When I try adding a movie via the web ui it doesn't lookup imdb/tmdb, adding the same movie via CLI works fine.
The text was updated successfully, but these errors were encountered: