From d7ac53ae93c52cc4fc604b6e814cf8bd896ba7b0 Mon Sep 17 00:00:00 2001
From: Euan de Kock <euan@dekock.net>
Date: Thu, 26 Sep 2024 00:04:03 +0800
Subject: [PATCH] Update const.py to add new Australian Server URL (#126714)

Growatt is now redirecting Australian users to a new server. This adds support for this server.
---
 homeassistant/components/growatt_server/const.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/homeassistant/components/growatt_server/const.py b/homeassistant/components/growatt_server/const.py
index fe8622bea7f..4ad62aa812b 100644
--- a/homeassistant/components/growatt_server/const.py
+++ b/homeassistant/components/growatt_server/const.py
@@ -12,6 +12,7 @@ SERVER_URLS = [
     "https://openapi.growatt.com/",  # Other regional server
     "https://openapi-cn.growatt.com/",  # Chinese server
     "https://openapi-us.growatt.com/",  # North American server
+    "https://openapi-au.growatt.com/",  # Australia Server
     "http://server.smten.com/",  # smten server
 ]
 
-- 
GitLab