mirror of
https://github.com/KokaKiwi/BarInsta
synced 2024-11-22 06:37:30 +00:00
v16.6-a5 fix issue reported by @SaurabhBhaiyaji
This commit is contained in:
parent
07dd0e12a1
commit
e705131dea
@ -215,7 +215,7 @@ public final class Utils {
|
|||||||
if (++i == commentLength) break;
|
if (++i == commentLength) break;
|
||||||
currChar = text.charAt(i);
|
currChar = text.charAt(i);
|
||||||
|
|
||||||
if (currChar == '.') {
|
if (currChar == '.' && i + 1 < commentLength) {
|
||||||
final char nextChar = text.charAt(i + 1);
|
final char nextChar = text.charAt(i + 1);
|
||||||
if (nextChar == '.' || nextChar == ' ' || nextChar == '#' || nextChar == '@' || nextChar == '/'
|
if (nextChar == '.' || nextChar == ' ' || nextChar == '#' || nextChar == '@' || nextChar == '/'
|
||||||
|| nextChar == '\r' || nextChar == '\n') {
|
|| nextChar == '\r' || nextChar == '\n') {
|
||||||
|
Loading…
Reference in New Issue
Block a user