Added return none for none when bleaching

This commit is contained in:
ZKWolf 2023-11-21 22:59:00 +01:00
parent 56ea5cd241
commit 8fe6401ad4

View File

@ -48,6 +48,8 @@ def check_for_game_client(check_type="strict"):
def sanitize_input(input_value):
if input_value is None:
return None
return bleach.clean(input_value)