fix(apiv2): correctly apply privacy settings on switch get

This commit is contained in:
spiral
2021-10-12 06:18:54 -04:00
parent e2a56a198f
commit c164fad2ac
2 changed files with 5 additions and 5 deletions

View File

@@ -105,13 +105,13 @@ namespace PluralKit.API
if (system == null)
throw APIErrors.SystemNotFound;
var sw = await _repo.GetSwitchByUuid(switchId);
if (sw == null || system.Id != sw.System)
throw APIErrors.SwitchNotFound;
var ctx = this.ContextFor(system);
if (!system.FrontHistoryPrivacy.CanAccess(ctx))
throw APIErrors.UnauthorizedFrontHistory;
var sw = await _repo.GetSwitchByUuid(switchId);
if (sw == null)
throw APIErrors.SwitchNotFound;
var members = _db.Execute(conn => _repo.GetSwitchMembers(conn, sw.Id));