From bf06d493eeb99cacf6d1666d9d40707d414bd78c Mon Sep 17 00:00:00 2001 From: Alex Vandiver Date: Thu, 23 Mar 2023 02:50:34 +0000 Subject: [PATCH] web: Save a needless 301 redirect from /history to /history/. --- templates/corporate/team.html | 2 +- .../documentation_crawler/spiders/check_help_documentation.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/corporate/team.html b/templates/corporate/team.html index 0749091308..cb74e54dce 100644 --- a/templates/corporate/team.html +++ b/templates/corporate/team.html @@ -77,7 +77,7 @@ contributors, and more than 75 with 100+ commits." %} leadership, Zulip is built by an incredible distributed community of developers from all around the world. You can read about - the project's history if + the project's history if you want to learn more about Zulip's origins.

diff --git a/tools/documentation_crawler/documentation_crawler/spiders/check_help_documentation.py b/tools/documentation_crawler/documentation_crawler/spiders/check_help_documentation.py index 2a989536fd..b092aa3404 100644 --- a/tools/documentation_crawler/documentation_crawler/spiders/check_help_documentation.py +++ b/tools/documentation_crawler/documentation_crawler/spiders/check_help_documentation.py @@ -65,7 +65,7 @@ class PorticoDocumentationSpider(BaseDocumentationSpider): name = "portico_documentation_crawler" start_urls = [ "http://localhost:9981/hello/", - "http://localhost:9981/history", + "http://localhost:9981/history/", "http://localhost:9981/plans", "http://localhost:9981/team", "http://localhost:9981/apps",