Skip to content

Commit 55c2d5c

Browse files
committed
fix: change playlist name delimiter from hyphen to space
Update playlist name generation to use a space instead of a hyphen between "Aurral" and the flow name. This ensures consistency with expected naming conventions across the system.
1 parent 52bbbec commit 55c2d5c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

backend/services/weeklyFlowPlaylistManager.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ export class WeeklyFlowPlaylistManager {
8787
const existingFiles = await fs.readdir(this.libraryRoot).catch(() => []);
8888
const expectedFiles = new Set();
8989
for (const flow of flows) {
90-
const playlistName = `Aurral-${flow.name}`;
90+
const playlistName = `Aurral ${flow.name}`;
9191
const fileName = `${this._sanitize(playlistName)}.nsp`;
9292
const nspPath = path.join(this.libraryRoot, fileName);
9393
expectedFiles.add(fileName);
@@ -185,8 +185,8 @@ export class WeeklyFlowPlaylistManager {
185185

186186
getPlaylistName(playlistType) {
187187
const flow = flowPlaylistConfig.getFlow(playlistType);
188-
if (flow) return `Aurral-${flow.name}`;
189-
return `Aurral-${playlistType}`;
188+
if (flow) return `Aurral ${flow.name}`;
189+
return `Aurral ${playlistType}`;
190190
}
191191
}
192192

0 commit comments

Comments
 (0)