improve-search-error-handling #8

Merged
tiradoe merged 2 commits from improve-search-error-handling into main 2025-06-30 20:38:40 +00:00
Showing only changes of commit f8b4fa4a0e - Show all commits

View file

@ -3,7 +3,6 @@ from movie_db.db_providers.omdb import OMDb
def omdb_search(request):
print("ENTERING MOVIE SEARCH")
query = request.GET.get("q")
if not query:
return JsonResponse({"Error": "Missing query"}, status=400)