From 5f47aff952f4b2e65cb96cc1b4f929bb955720f0 Mon Sep 17 00:00:00 2001 From: SeanOMik Date: Sat, 16 Sep 2023 22:34:34 -0400 Subject: [PATCH] Update project url in http root response --- src/src.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/src.cpp b/src/src.cpp index a0ae035..e247dab 100644 --- a/src/src.cpp +++ b/src/src.cpp @@ -169,9 +169,9 @@ void handle_http_root() { log_request(); static size_t const BUFSIZE = 256; static char const *response_template = - "Prometheus ESP8266 DHT Exporter by HON95.\n" + "Prometheus ESP8266 DHT and SGP30 Exporter by SeanOMik.\n" "\n" - "Project: https://github.com/HON95/prometheus-esp8266-dht-exporter\n" + "Project: https://github.com/seanomik/prometheus-esp8266-dht-exporter\n" "\n" "Usage: %s\n"; char response[BUFSIZE];