Changed refresh rato to every 30min to look up for changes in state.

This commit is contained in:
massimiliano 2019-05-27 11:15:33 +02:00
parent 674d4267e2
commit 6ff297ba01
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ public class StatusService extends Service {
public void run() {
new StatusService.GetList().execute();
}
}, 100, 100000);//100000=100sec
}, 100, 1800000);//100000=100sec
}