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:
commit
9ebda98c2d
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue