remove check update from periodical call

This commit is contained in:
rustdesk 2023-09-26 10:47:45 +08:00
parent c470f2734d
commit f21f793343
2 changed files with 5 additions and 6 deletions

View file

@ -57,7 +57,7 @@ class _ConnectionPageState extends State<ConnectionPage> {
}();
}
if (isAndroid) {
Timer(const Duration(seconds: 5), () async {
Timer(const Duration(seconds: 1), () async {
_updateUrl = await bind.mainGetSoftwareUpdateUrl();
if (_updateUrl.isNotEmpty) setState(() {});
});