mirror of
https://github.com/nix-community/nix-on-droid-app.git
synced 2025-11-08 19:46:10 +01:00
fix TerminalView possiblePropLocations IOBE
This commit is contained in:
parent
78cdaef6d2
commit
fe584940e1
1 changed files with 1 additions and 1 deletions
|
|
@ -1549,7 +1549,7 @@ public final class TerminalView extends View {
|
|||
|
||||
propsFile = new File(possiblePropLocations[0]);
|
||||
int i = 1;
|
||||
while (!propsFile.exists() && i <= possiblePropLocations.length) {
|
||||
while (!propsFile.exists() && i < possiblePropLocations.length) {
|
||||
propsFile = new File(possiblePropLocations[i]);
|
||||
i += 1;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue