hotfix: Capture Exception
This commit is contained in:
parent
c8d3c9d614
commit
028b1e4ed8
|
@ -15,6 +15,7 @@ import 'package:localstorage/localstorage.dart';
|
|||
import 'package:universal_html/prefer_universal/html.dart' as html;
|
||||
import 'package:url_launcher/url_launcher.dart';
|
||||
|
||||
import '../main.dart';
|
||||
import '../utils/app_route.dart';
|
||||
import '../utils/beautify_string_extension.dart';
|
||||
import '../utils/famedlysdk_store.dart';
|
||||
|
@ -83,6 +84,7 @@ class MatrixState extends State<Matrix> {
|
|||
|
||||
void _initWithStore() async {
|
||||
var initLoginState = client.onLoginStateChanged.stream.first;
|
||||
try {
|
||||
client.database = await getDatabase(client);
|
||||
client.connect();
|
||||
if (await initLoginState == LoginState.logged && PlatformInfos.isMobile) {
|
||||
|
@ -92,6 +94,10 @@ class MatrixState extends State<Matrix> {
|
|||
);
|
||||
}
|
||||
_cleanUpUserStatus(userStatuses);
|
||||
} catch (e, s) {
|
||||
client.onLoginStateChanged.sink.addError(e, s);
|
||||
captureException(e, s);
|
||||
}
|
||||
}
|
||||
|
||||
Map<String, dynamic> getAuthByPassword(String password, [String session]) => {
|
||||
|
|
|
@ -18,12 +18,7 @@ import 'views/chat_list.dart';
|
|||
|
||||
final sentry = SentryClient(dsn: '8591d0d863b646feb4f3dda7e5dcab38');
|
||||
|
||||
void main() {
|
||||
SystemChrome.setSystemUIOverlayStyle(
|
||||
SystemUiOverlayStyle(statusBarColor: Colors.transparent));
|
||||
runZonedGuarded(
|
||||
() => runApp(App()),
|
||||
(error, stackTrace) async {
|
||||
void captureException(error, stackTrace) async {
|
||||
final storage = LocalStorage('LocalStorage');
|
||||
await storage.ready;
|
||||
debugPrint(error.toString());
|
||||
|
@ -34,7 +29,14 @@ void main() {
|
|||
stackTrace: stackTrace,
|
||||
);
|
||||
}
|
||||
},
|
||||
}
|
||||
|
||||
void main() {
|
||||
SystemChrome.setSystemUIOverlayStyle(
|
||||
SystemUiOverlayStyle(statusBarColor: Colors.transparent));
|
||||
runZonedGuarded(
|
||||
() => runApp(App()),
|
||||
captureException,
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
@ -36,8 +36,6 @@ Future<Database> getDatabase(Client client) async {
|
|||
await store.setItem('database-password', password);
|
||||
}
|
||||
return _db;
|
||||
} catch (_) {
|
||||
rethrow;
|
||||
} finally {
|
||||
_generateDatabaseLock = false;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue