Update whats_new.page.dart

This commit is contained in:
Yegor Vialov
2020-05-04 12:36:32 +03:00
committed by GitHub
parent 2445dc7869
commit 2fa640433a

View File

@ -24,7 +24,7 @@ class _WhatsNewPageState extends State<WhatsNewPage> {
error = ""; error = "";
}); });
http.Response response; http.Response response;
response = await http.get("http://ha-client.app/service/whats_new_1.0.0.md"); response = await http.get("http://ha-client.app/service/whats_new_1.0.0_beta.md");
if (response.statusCode == 200) { if (response.statusCode == 200) {
setState(() { setState(() {
data = response.body; data = response.body;
@ -66,4 +66,4 @@ class _WhatsNewPageState extends State<WhatsNewPage> {
body: body body: body
); );
} }
} }