Browse Source

Fix empty strings crashing Namespace for float options

This feels like a Discord bug to me but it's causing issues
pull/8338/head
Rapptz 3 years ago
parent
commit
c8db766be4
  1. 3
      discord/app_commands/namespace.py

3
discord/app_commands/namespace.py

@ -142,7 +142,8 @@ class Namespace:
self.__dict__[name] = value
elif opt_type == 10: # number
value = option['value'] # type: ignore # Key is there
if value is None:
# This condition is written this way because 0 can be a valid float
if value is None or value == '':
self.__dict__[name] = float('nan')
else:
self.__dict__[name] = float(value)

Loading…
Cancel
Save