Fix #197 app logged off when closed (#239)

* Fixed issue with app logging off after closing

* Change version to reflect minor change
This commit is contained in:
Alex 2022-06-20 18:10:23 -05:00 committed by GitHub
parent 73024edba9
commit 18c22d2a6c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 113 additions and 20 deletions

View file

@ -128,7 +128,7 @@ class NetworkService {
String validUrl = Uri.parse('$savedEndpoint/server-info/ping').toString();
debugPrint("pint server at url $validUrl");
debugPrint("ping server at url $validUrl");
Response res = await dio.get(validUrl);
var jsonRespsonse = jsonDecode(res.toString());