From 8687d197029aa6fb5ed8f10dbf97525e547cb9b6 Mon Sep 17 00:00:00 2001 From: Decobus Date: Tue, 22 Jul 2025 15:54:02 -0400 Subject: [PATCH] Add Resources scene to orphaned themes bypass check MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Added "Resources" to SYSTEM_SCENES array in verifyGroups API - Resources scene will no longer be flagged as orphaned in OBS verification - Prevents system scenes from showing up as cleanup candidates 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- app/api/verifyGroups/route.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/api/verifyGroups/route.ts b/app/api/verifyGroups/route.ts index 40b6df0..1ed5515 100644 --- a/app/api/verifyGroups/route.ts +++ b/app/api/verifyGroups/route.ts @@ -12,7 +12,8 @@ const SYSTEM_SCENES: string[] = [ 'Starting', 'Ending', 'Audio', - 'Movies' + 'Movies', + 'Resources' ]; interface OBSScene {