From 22ef9c4e9fbc054e2cd9a2fbdc78e0e05a23d504 Mon Sep 17 00:00:00 2001 From: Dispatcharr Date: Fri, 4 Apr 2025 08:26:33 -0500 Subject: [PATCH] Fixed Channel saving Fixed bug where channel would not save if a logo was not present. --- frontend/src/components/forms/Channel.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/forms/Channel.jsx b/frontend/src/components/forms/Channel.jsx index b5f18c56..be1abd33 100644 --- a/frontend/src/components/forms/Channel.jsx +++ b/frontend/src/components/forms/Channel.jsx @@ -95,7 +95,7 @@ const Channel = ({ channel = null, isOpen, onClose }) => { values.stream_profile_id = null; } - if (!values.logo_id) { + if (!values.logo_id || values.logo_id === 'undefined') { delete values.logo_id; }