Fix bug
This commit is contained in:
parent
63485070a2
commit
287fece193
|
|
@ -101,7 +101,7 @@ public class Config {
|
|||
String[] lines = m3u8.split("\\r?\\n");
|
||||
StringBuilder sb = new StringBuilder();
|
||||
for (String line : lines) {
|
||||
if (!line.startsWith("#")) line = base + line;
|
||||
if (!line.startsWith("#") && !line.startsWith("http")) line = base + line;
|
||||
sb.append(line).append("\n");
|
||||
}
|
||||
return sb.toString();
|
||||
|
|
|
|||
Binary file not shown.
|
|
@ -1 +1 @@
|
|||
bb676e5879183620dcc84bce471629cb
|
||||
b3f144d34651b79384fc9e1ca4e3e310
|
||||
|
|
|
|||
Loading…
Reference in New Issue