Disclaimer for direct editing
This commit is contained in:
parent
af3c1b7da6
commit
c6a654149c
1 changed files with 6 additions and 1 deletions
|
@ -156,7 +156,12 @@ function splitByCulturalGroup(filePath) {
|
||||||
// Add all lines of the entry to the appropriate cultural group
|
// Add all lines of the entry to the appropriate cultural group
|
||||||
if (currentCulturalGroup) {
|
if (currentCulturalGroup) {
|
||||||
if (!groups[currentCulturalGroup]) {
|
if (!groups[currentCulturalGroup]) {
|
||||||
groups[currentCulturalGroup] = ['#EXTM3U'];
|
groups[currentCulturalGroup] = [
|
||||||
|
'#EXTM3U',
|
||||||
|
'# WARNING: This file is auto-generated from mystique.m3u',
|
||||||
|
'# Do not edit this file directly - edit the main mystique.m3u instead',
|
||||||
|
'#'
|
||||||
|
];
|
||||||
}
|
}
|
||||||
groups[currentCulturalGroup].push(...currentEntry);
|
groups[currentCulturalGroup].push(...currentEntry);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue