This commit is contained in:
FongMi 2025-05-22 03:33:35 +08:00
parent 63485070a2
commit 287fece193
3 changed files with 2 additions and 2 deletions

View File

@ -101,7 +101,7 @@ public class Config {
String[] lines = m3u8.split("\\r?\\n"); String[] lines = m3u8.split("\\r?\\n");
StringBuilder sb = new StringBuilder(); StringBuilder sb = new StringBuilder();
for (String line : lines) { for (String line : lines) {
if (!line.startsWith("#")) line = base + line; if (!line.startsWith("#") && !line.startsWith("http")) line = base + line;
sb.append(line).append("\n"); sb.append(line).append("\n");
} }
return sb.toString(); return sb.toString();

Binary file not shown.

View File

@ -1 +1 @@
bb676e5879183620dcc84bce471629cb b3f144d34651b79384fc9e1ca4e3e310