From c08a272d1dbdbd6f5d03528e90da89a994b96252 Mon Sep 17 00:00:00 2001 From: ryuukk <44361234+ryuukk@users.noreply.github.com> Date: Tue, 15 Oct 2024 06:34:38 +0200 Subject: [PATCH] Warn about missing scheme in the uri --- plugin/core/sessions.py | 1 + 1 file changed, 1 insertion(+) diff --git a/plugin/core/sessions.py b/plugin/core/sessions.py index 4f8c216c1..e925df59b 100644 --- a/plugin/core/sessions.py +++ b/plugin/core/sessions.py @@ -1702,6 +1702,7 @@ def try_open_uri_async( # There is no pre-existing session-buffer, so we have to go through AbstractPlugin.on_open_uri_async. if self._plugin: return self._open_uri_with_plugin_async(self._plugin, uri, r, flags, group) + print(f"LSP: can't open the uri at location: '{uri}', perhaps the scheme is missing?") return None def open_uri_async(