Request HTTPS by default instead of HTTP

This might be more reasonable privacy-wise in 2025.
This commit is contained in:
Quentin Rameau
2025-01-05 12:01:37 +01:00
parent 9ef79bf710
commit b3ba9f5991
+1 -1
View File
@@ -579,7 +579,7 @@ loaduri(Client *c, const Arg *a)
url = g_strdup_printf("file://%s", path);
free(path);
} else {
url = g_strdup_printf("http://%s", uri);
url = g_strdup_printf("https://%s", uri);
}
if (apath != uri)
free(apath);