Fixed actor_matches_allow bug, closes #836

This commit is contained in:
Simon Willison 2020-06-11 15:47:19 -07:00
commit f39f111331
2 changed files with 3 additions and 1 deletions

View file

@ -884,7 +884,7 @@ def actor_matches_allow(actor, allow):
values = [values]
actor_values = actor.get(key)
if actor_values is None:
return False
continue
if not isinstance(actor_values, list):
actor_values = [actor_values]
actor_values = set(actor_values)