From 1cdc6c61e0555e0975d2470dd8f337f30183b29e Mon Sep 17 00:00:00 2001 From: NiLuJe Date: Sat, 20 Feb 2021 18:10:39 +0100 Subject: [PATCH] Strip trailing slash from the URL in About popup --- frontend/ui/elements/common_info_menu_table.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/ui/elements/common_info_menu_table.lua b/frontend/ui/elements/common_info_menu_table.lua index ea9af2505..4070fed8d 100644 --- a/frontend/ui/elements/common_info_menu_table.lua +++ b/frontend/ui/elements/common_info_menu_table.lua @@ -45,7 +45,7 @@ common_info.about = { keep_menu_open = true, callback = function() UIManager:show(InfoMessage:new{ - text = T(_("KOReader %1\n\nA document viewer for E Ink devices.\n\nLicensed under Affero GPL v3. All dependencies are free software.\n\nhttp://koreader.rocks/"), BD.ltr(Version:getCurrentRevision())), + text = T(_("KOReader %1\n\nA document viewer for E Ink devices.\n\nLicensed under Affero GPL v3. All dependencies are free software.\n\nhttp://koreader.rocks"), BD.ltr(Version:getCurrentRevision())), icon = "koreader", }) end