We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 831aa69 commit 05bb399Copy full SHA for 05bb399
terminal-view/src/main/java/com/termux/view/TerminalView.java
@@ -1547,8 +1547,8 @@ private Properties getProperties() {
1547
};
1548
1549
propsFile = new File(possiblePropLocations[0]);
1550
- int i = 1;
1551
- while (!propsFile.exists() && i <= possiblePropLocations.length) {
+ int i = 0;
+ while (!propsFile.exists() && i < possiblePropLocations.length) {
1552
propsFile = new File(possiblePropLocations[i]);
1553
i += 1;
1554
}
0 commit comments