summaryrefslogtreecommitdiff
path: root/Libraries/LibWeb
diff options
context:
space:
mode:
Diffstat (limited to 'Libraries/LibWeb')
-rw-r--r--Libraries/LibWeb/ResourceLoader.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Libraries/LibWeb/ResourceLoader.cpp b/Libraries/LibWeb/ResourceLoader.cpp
index bbaa45fa62..ce047b7e18 100644
--- a/Libraries/LibWeb/ResourceLoader.cpp
+++ b/Libraries/LibWeb/ResourceLoader.cpp
@@ -113,7 +113,7 @@ void ResourceLoader::load(const URL& url, Function<void(const ByteBuffer&, const
return;
}
- if (url.protocol() == "http" || url.protocol() == "https") {
+ if (url.protocol() == "http" || url.protocol() == "https" || url.protocol() == "gemini") {
auto download = protocol_client().start_download(url.to_string());
if (!download) {
if (error_callback)