Commit 49303e7
committed
Fix .teamname parsing off-by-one in substr offset
'teamname' is 8 chars + 1 space = 9 char prefix, but the code used
offset 10 (skipping first char of the name) and required >10 chars
(single-letter names were rejected as empty). Fix: offset 9, check >9.1 parent 586d4f3 commit 49303e7
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1500 | 1500 | | |
1501 | 1501 | | |
1502 | 1502 | | |
1503 | | - | |
| 1503 | + | |
1504 | 1504 | | |
1505 | 1505 | | |
1506 | 1506 | | |
| |||
0 commit comments