diff options
author | Ben Wiederhake <BenWiederhake.GitHub@gmx.de> | 2021-10-03 22:56:30 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-10-05 02:08:08 +0200 |
commit | 52e9f254032b7c5bc59f8eeb4cfaeb5cd9df323a (patch) | |
tree | 7b0550076223b089281c797a85f6eb4d4eed44c6 /Userland/Applications | |
parent | ce334ee1bca792ea0dc715519ca387cdc4e1ec55 (diff) | |
download | serenity-52e9f254032b7c5bc59f8eeb4cfaeb5cd9df323a.zip |
Everywhere: Change from http to https where feasible
I used "git grep -FIn http://" to find all occurrences, and looked at
each one. If an occurrence was really just a link, and if a https
version exists, and if our Browser can access it at least as well as the
http version, then I changed the occurrence to https.
I'm happy to report that I didn't run into a single site where Browser
can't deal with the https version.
Diffstat (limited to 'Userland/Applications')
-rw-r--r-- | Userland/Applications/Browser/BrowserWindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Applications/Browser/BrowserWindow.cpp b/Userland/Applications/Browser/BrowserWindow.cpp index b2f1efa3dc..834f3ca627 100644 --- a/Userland/Applications/Browser/BrowserWindow.cpp +++ b/Userland/Applications/Browser/BrowserWindow.cpp @@ -266,7 +266,7 @@ void BrowserWindow::build_menus() add_search_engine("Bing", "https://www.bing.com/search?q={}"); add_search_engine("DuckDuckGo", "https://duckduckgo.com/?q={}"); - add_search_engine("FrogFind", "http://frogfind.com/?q={}"); + add_search_engine("FrogFind", "https://frogfind.com/?q={}"); add_search_engine("GitHub", "https://github.com/search?q={}"); add_search_engine("Google", "https://google.com/search?q={}"); add_search_engine("Yandex", "https://yandex.com/search/?text={}"); |