Skip to content

Commit

Permalink
compliance stats / compliance rar missing team-shared records bug…
Browse files Browse the repository at this point in the history
…-fix (KC-758)
  • Loading branch information
aaunario-keeper authored and sk-keeper committed Mar 15, 2024
1 parent 2cec31a commit 99e0f8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion keepercommander/sox/sox_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def get_vault_records(self, user_ref):

# Get SF-shared records
# Shared to team
user_teams = {t for tuid, t in self._teams.items() if user_id in t.users}
user_teams = {tuid for tuid, t in self._teams.items() if user_id in t.users}
team_sf_uids = {sfuid for sfuid, sf in self._shared_folders.items() if sf.teams.intersection(user_teams)}
# Shared to user
user_sf_uids = {sfuid for sfuid, sf in self._shared_folders.items() if user_id in sf.users}
Expand Down

0 comments on commit 99e0f8a

Please sign in to comment.