mirror of
https://github.com/Dispatcharr/Dispatcharr.git
synced 2026-07-18 00:55:50 +00:00
Fixed Channel saving
Fixed bug where channel would not save if a logo was not present.
This commit is contained in:
parent
ec629a6e41
commit
22ef9c4e9f
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue