summaryrefslogtreecommitdiff
path: root/searx/engines/tonline.py
diff options
context:
space:
mode:
Diffstat (limited to 'searx/engines/tonline.py')
-rw-r--r--searx/engines/tonline.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/searx/engines/tonline.py b/searx/engines/tonline.py
index 04fb34250..4edf5e3ed 100644
--- a/searx/engines/tonline.py
+++ b/searx/engines/tonline.py
@@ -14,7 +14,7 @@ from urllib.parse import urlencode
from lxml import html
-from searx.utils import eval_xpath_list, eval_xpath, extract_text, get_embeded_stream_url, ElementType
+from searx.utils import eval_xpath_list, eval_xpath, extract_text, ElementType
from searx.result_types import EngineResults
from searx.enginelib import EngineAbout
@@ -126,7 +126,6 @@ def _video_results(doc: ElementType, res: EngineResults):
url=url,
title=" - ".join(extract_text(part) or "" for part in title_parts),
thumbnail=extract_text(eval_xpath(result, ".//img/@src") or "") or "",
- iframe_src=get_embeded_stream_url(url) or "",
)
)