|
|
|
|
@ -33,6 +33,7 @@ public class TxtSubscribe { |
|
|
|
|
String line; |
|
|
|
|
while ((line = bufferedReader.readLine()) != null) { |
|
|
|
|
if (line.equals("")) continue; |
|
|
|
|
if (line.startsWith("#"))continue; |
|
|
|
|
if (line.startsWith("#EXTM3U")) continue; |
|
|
|
|
if (isSetting(line)) continue; |
|
|
|
|
if (line.startsWith("#EXTINF") || line.contains("#EXTINF")) { |
|
|
|
|
@ -89,6 +90,7 @@ public class TxtSubscribe { |
|
|
|
|
if (readLine.trim().isEmpty()) { |
|
|
|
|
readLine = bufferedReader.readLine(); |
|
|
|
|
} else { |
|
|
|
|
if(readLine.startsWith("#"))continue; |
|
|
|
|
String[] split = readLine.split(","); |
|
|
|
|
if (split.length < 2) { |
|
|
|
|
readLine = bufferedReader.readLine(); |
|
|
|
|
|