mirror of
https://github.com/RfidResearchGroup/RFIDtools.git
synced 2026-05-12 11:19:59 -07:00
Goto terminal bug fixed.
This commit is contained in:
+5
-2
@@ -77,9 +77,12 @@ public class Proxmark3NewTerminalInitActivity extends BaseActivity {
|
||||
Commons.setAutoGoToTerminal(isChecked);
|
||||
}
|
||||
});
|
||||
box.setChecked(Commons.getAutoGoToTerminal());
|
||||
|
||||
// Must have init pm3 client and check auto go!
|
||||
if (Commons.getAutoGoToTerminal() && Commons.isPM3ClientDecompressed()) {
|
||||
// Must have init pm3 client and check auto go and have the terminal type selected!
|
||||
if (Commons.getAutoGoToTerminal()
|
||||
&& Commons.isPM3ClientDecompressed()
|
||||
&& Commons.getTerminalType() != -1) {
|
||||
go();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user