From 2cdf927d98edff71ae95fc9e755e53bf3246d867 Mon Sep 17 00:00:00 2001 From: Oliver Walters Date: Mon, 2 May 2022 10:36:03 +1000 Subject: [PATCH] linting fix --- lib/widget/location_display.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/widget/location_display.dart b/lib/widget/location_display.dart index 00ba9557..cdf1856e 100644 --- a/lib/widget/location_display.dart +++ b/lib/widget/location_display.dart @@ -117,7 +117,7 @@ class _LocationDisplayState extends RefreshableState { // Reload location information if (location != null) { - final bool result = await location!.reload() ?? false; + final bool result = await location!.reload(); if (!result) { Navigator.of(context).pop();