Merge pull request #27494 from akhilnarang/fix-ratelimiter

fix(rate_limiter): we can't call str.join([]) with NoneTypes in the list
This commit is contained in:
Akhil Narang 2024-08-23 10:46:33 +05:30 committed by GitHub
commit 9ebda98c2d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -126,7 +126,7 @@ def rate_limit(
ip = frappe.local.request_ip if ip_based is True else None
user_key = frappe.form_dict.get(key)
user_key = frappe.form_dict.get(key, "")
identity = None