Skip to content

Commit

Permalink
bug fix and version update
Browse files Browse the repository at this point in the history
  • Loading branch information
bibash28 committed Oct 20, 2023
1 parent 0b0ce6e commit 721d181
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,7 @@ class QRCodeScanCubit extends Cubit<QRCodeScanState> {
log.i('uri - $newUrl');
}

final responseType = uri.queryParameters['response_type'] ?? '';
final responseType = state.uri?.queryParameters['response_type'] ?? '';

/// check required keys available or not
final keys = <String>[];
Expand Down
2 changes: 0 additions & 2 deletions lib/splash/bloclisteners/blocklisteners.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import 'dart:async';
import 'dart:convert';

import 'package:altme/app/app.dart';
import 'package:altme/connection_bridge/connection_bridge.dart';
Expand All @@ -16,7 +15,6 @@ import 'package:altme/splash/splash.dart';
import 'package:altme/wallet/wallet.dart';
import 'package:beacon_flutter/beacon_flutter.dart';
import 'package:dio/dio.dart';
import 'package:file_saver/file_saver.dart';
import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: altme
description: AltMe Flutter App
version: 1.22.0+301
version: 1.23.0+302

environment:
sdk: ">=3.1.0 <4.0.0"
Expand Down

0 comments on commit 721d181

Please sign in to comment.