mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-12-23 10:11:52 +03:00
always close the sink
This commit is contained in:
parent
6fc18f8fdd
commit
ea7ae8acc2
@ -240,8 +240,6 @@ class _FidoFingerprintsNotifier extends FidoFingerprintsNotifier {
|
||||
throw RpcError(errorStatus, 'Platform error: $errorStatus', {});
|
||||
}
|
||||
}
|
||||
|
||||
await controller.sink.close();
|
||||
} on PlatformException catch (pe) {
|
||||
_log.debug('Received platform exception: \'$pe\'');
|
||||
final decoded = pe.decode();
|
||||
@ -249,6 +247,8 @@ class _FidoFingerprintsNotifier extends FidoFingerprintsNotifier {
|
||||
} catch (e) {
|
||||
_log.debug('Received error: \'$e\'');
|
||||
controller.sink.addError(e);
|
||||
} finally {
|
||||
await controller.sink.close();
|
||||
}
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user