mirror of
https://github.com/Dispatcharr/Dispatcharr.git
synced 2026-01-23 02:35:14 +00:00
fixed exact epg matching on bulk channel creation
This commit is contained in:
parent
64d68bf11d
commit
3ad1a1b4dc
2 changed files with 4 additions and 1 deletions
|
|
@ -194,6 +194,9 @@ def match_epg_channels():
|
|||
f"{LOWER_FUZZY_THRESHOLD}, skipping"
|
||||
)
|
||||
|
||||
if channels_to_update:
|
||||
Channel.objects.bulk_update(channels_to_update, ['epg_data'])
|
||||
|
||||
total_matched = len(matched_channels)
|
||||
if total_matched:
|
||||
logger.info(f"Match Summary: {total_matched} channel(s) matched.")
|
||||
|
|
|
|||
|
|
@ -313,7 +313,7 @@ const ChannelsTable = ({}) => {
|
|||
{
|
||||
id: 'enabled',
|
||||
header: (
|
||||
<Box style={{ paddingLeft: 10 }}>
|
||||
<Box style={{ paddingLeft: 12 }}>
|
||||
<ScanEye size="16" />
|
||||
</Box>
|
||||
),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue