Commit 41929aa0 authored by Victor Ananjesky's avatar Victor Ananjesky

use https as a default protocol in html dialog

parent 84634b55
......@@ -67,7 +67,7 @@ load_uri (const gchar * uri)
else
{
if (g_uri_parse_scheme (uri) == NULL)
addr = g_strdup_printf ("http://%s", uri);
addr = g_strdup_printf ("https://%s", uri);
else
addr = g_strdup (uri);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment