Fix bad ssl certificate even in release mode...; Search non case sensitive for username

This commit is contained in:
poka 2021-11-27 08:04:58 +01:00
parent 012cd31daf
commit 77a15338ea
3 changed files with 7 additions and 5 deletions

View File

@ -79,6 +79,8 @@ Future<void> main() async {
// _homeProvider.playSound('start', 0.2); // _homeProvider.playSound('start', 0.2);
// } // }
HttpOverrides.global = MyHttpOverrides();
if (kReleaseMode && enableSentry) { if (kReleaseMode && enableSentry) {
// CatcherOptions debugOptions = CatcherOptions(DialogReportMode(), [ // CatcherOptions debugOptions = CatcherOptions(DialogReportMode(), [
// SentryHandler(SentryClient(SentryOptions( // SentryHandler(SentryClient(SentryOptions(
@ -110,8 +112,6 @@ Future<void> main() async {
} else { } else {
print('Debug mode enabled: No sentry alerte'); print('Debug mode enabled: No sentry alerte');
HttpOverrides.global = MyHttpOverrides();
runApp(Gecko(endPointGVA)); runApp(Gecko(endPointGVA));
} }
} }

View File

@ -8,7 +8,7 @@ import 'package:http/http.dart' as http;
class SearchProvider with ChangeNotifier { class SearchProvider with ChangeNotifier {
TextEditingController searchController = TextEditingController(); TextEditingController searchController = TextEditingController();
List searchResult = []; List searchResult = [];
final cacheDuring = 0 * 60 * 1000; //First number is minutes final cacheDuring = 20 * 60 * 1000; //First number is minutes
int cacheTime = 0; int cacheTime = 0;
void rebuildWidget() { void rebuildWidget() {
@ -33,7 +33,9 @@ class SearchProvider with ChangeNotifier {
g1WalletsBox.toMap().forEach((key, value) { g1WalletsBox.toMap().forEach((key, value) {
if ((value.id != null && if ((value.id != null &&
value.id.username != null && value.id.username != null &&
value.id.username.contains(searchController.text)) || value.id.username
.toLowerCase()
.contains(searchController.text)) ||
value.pubkey.contains(searchController.text)) { value.pubkey.contains(searchController.text)) {
searchResult.add(value); searchResult.add(value);
return; return;

View File

@ -5,7 +5,7 @@ description: Pay with G1.
# pub.dev using `pub publish`. This is preferred for private packages. # pub.dev using `pub publish`. This is preferred for private packages.
publish_to: 'none' # Remove this line if you wish to publish to pub.dev publish_to: 'none' # Remove this line if you wish to publish to pub.dev
version: 0.0.3+6 version: 0.0.3+7
environment: environment:
sdk: ">=2.7.0 <3.0.0" sdk: ">=2.7.0 <3.0.0"