Merge pull request 'Fixed bug where the default unit was "m" instead of sending None' (#27) from default_unit_patch into master

Reviewed-on: #27
This commit is contained in:
AllfatherHatt 2026-08-31 20:53:48 +02:00
commit 5c018ab81b

View File

@ -117,7 +117,7 @@ class FitnessCog(commands.Cog):
)
return
unit = parts[2] if len(parts) > 2 else "m"
unit = parts[2] if len(parts) > 2 else None
timestamp = int(message.created_at.timestamp())
username = message.author.name