Austin Huang
5 years ago
No known key found for this signature in database
GPG Key ID: 84C23AA04587A91F
1 changed files with
1 additions and
1 deletions
-
app/src/main/java/awais/instagrabber/utils/Utils.java
|
|
@ -215,7 +215,7 @@ public final class Utils { |
|
|
|
if (++i == commentLength) break; |
|
|
|
currChar = text.charAt(i); |
|
|
|
|
|
|
|
if (currChar == '.') { |
|
|
|
if (currChar == '.' && i + 1 < commentLength) { |
|
|
|
final char nextChar = text.charAt(i + 1); |
|
|
|
if (nextChar == '.' || nextChar == ' ' || nextChar == '#' || nextChar == '@' || nextChar == '/' |
|
|
|
|| nextChar == '\r' || nextChar == '\n') { |
|
|
|