fixed exact epg matching on bulk channel creation

This commit is contained in:
dekzter 2025-04-04 10:49:12 -04:00
parent 64d68bf11d
commit 3ad1a1b4dc
2 changed files with 4 additions and 1 deletions

View file

@ -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.")

View file

@ -313,7 +313,7 @@ const ChannelsTable = ({}) => {
{
id: 'enabled',
header: (
<Box style={{ paddingLeft: 10 }}>
<Box style={{ paddingLeft: 12 }}>
<ScanEye size="16" />
</Box>
),