From 0ab787ef5f514dfed3868d39dc672de72f11f221 Mon Sep 17 00:00:00 2001 From: Logan Cusano Date: Tue, 28 Dec 2021 20:53:15 -0500 Subject: [PATCH] Bugfix: Profile update profile name didn't show as the status --- bot.py | 1 + 1 file changed, 1 insertion(+) diff --git a/bot.py b/bot.py index a6f2fa1..5440f72 100644 --- a/bot.py +++ b/bot.py @@ -355,6 +355,7 @@ class Bot(commands.Bot): self.squelch = int(config[str(profile_name)]['Squelch']) self.sample_rate = config[str(profile_name)]['Sample Rate'] self.play_sample_rate = config[str(profile_name)]['Player Sample Rate'] + self.profile_name = profile_name if self.sdr_started: self.start_sdr()