Рассчет вознаграждения по правильной формуле

This commit is contained in:
Ivan Murashov
2017-07-28 20:38:11 +03:00
parent 7207c6e247
commit b499d2ce5d
3 changed files with 6 additions and 5 deletions

View File

@@ -76,7 +76,7 @@ class SplashScreen extends StatelessWidget {
} else {
Map statusResponseMap = JSON.decode(statusResponse.body);
bool active = statusResponseMap['active'];
bool active = statusResponseMap['active'] == null ? false : statusResponseMap['active'];
if (active) {
startScanner(context);