Undo channels -> frequencies for API compat

This commit is contained in:
Logan Cusano
2025-04-27 02:49:35 -04:00
parent 44851d5c86
commit 0aa38a1eca
2 changed files with 4 additions and 4 deletions

View File

@@ -73,7 +73,7 @@ async def join_server(system_id, guild_id, channel_id):
sys_config = ConfigGenerator(
type=sys_details.get('decode_mode'),
systemName=sys_details['name'],
frequencies=sys_details.get('frequency_list_khz'), # Assuming 'channels' is the correct field name
channels=sys_details.get('frequency_list_khz'), # Assuming 'channels' is the correct field name
tags=tags_list,
whitelist=sys_details.get('tag_whitelist') # Use .get for optional fields
)