From 021ee55f2ae9a1b2e2c554e18222ba93dafdd9aa Mon Sep 17 00:00:00 2001 From: Rob Sassack <91514586+robsassack@users.noreply.github.com> Date: Mon, 6 Jul 2026 04:05:27 -0400 Subject: [PATCH] Allow .feedpak files in library when uploading (#770) Signed-off-by: Rob Sassack Co-authored-by: Byron Gamatos --- static/app.js | 2 +- static/v3/index.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/static/app.js b/static/app.js index 674d3b4..673167f 100644 --- a/static/app.js +++ b/static/app.js @@ -4379,7 +4379,7 @@ async function uploadSongs(fileList) { if (lower.endsWith('.feedpak') || lower.endsWith('.sloppak')) { files.push(f); } else { - failures.push(`${f.name}: only .feedpak accepted`); + failures.push(`${f.name}: only .feedpak or .sloppak accepted`); } } if (files.length === 0) { diff --git a/static/v3/index.html b/static/v3/index.html index 32aee83..2ac7e0e 100644 --- a/static/v3/index.html +++ b/static/v3/index.html @@ -194,7 +194,7 @@ - +