From 370ae8e19fae2d55a84cb7fd4dc3b20c96b0d3ed Mon Sep 17 00:00:00 2001 From: ducklet Date: Mon, 11 Oct 2021 21:13:45 +0200 Subject: [PATCH] urlinfo:imdb: fix extractor --- hotdog/command/urlinfo_/imdb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hotdog/command/urlinfo_/imdb.py b/hotdog/command/urlinfo_/imdb.py index 14b9aa9..a2a9421 100644 --- a/hotdog/command/urlinfo_/imdb.py +++ b/hotdog/command/urlinfo_/imdb.py @@ -101,7 +101,7 @@ async def extractor(info): return ld = json.loads(parser.value) - assert ld["@context"] == "http://schema.org" and ld["@type"] in ( + assert ld["@context"] == "https://schema.org" and ld["@type"] in ( "Movie", "CreativeWork", "TVSeries",