File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -85,8 +85,8 @@ class CCExtractor {
85
85
[
86
86
'-' + type,
87
87
location,
88
- tcppasswrd.isNotEmpty ? '-' + tcppasswrd : '' ,
89
- tcpdesc.isNotEmpty ? '-' + tcpdesc : '' ,
88
+ tcppasswrd.isNotEmpty ? '-tcppasswrd ' + tcppasswrd : '' ,
89
+ tcpdesc.isNotEmpty ? '-tcpdesc ' + tcpdesc : '' ,
90
90
'--gui_mode_reports' ,
91
91
...paramsList,
92
92
],
Original file line number Diff line number Diff line change @@ -52,6 +52,7 @@ class ClearFilesButton extends StatelessWidget {
52
52
@override
53
53
Widget build (BuildContext context) {
54
54
return BlocConsumer <ProcessBloc , ProcessState >(
55
+ listenWhen: (_, __) => true ,
55
56
listener: (context, processState) {
56
57
//TODO: fix only works the first time, bloc wont emit same state
57
58
if (CCExtractor .exitCodes[processState.exitCode] != null ) {
You can’t perform that action at this time.
0 commit comments