Skip to content

Commit

Permalink
Update RulesWindowController.m
Browse files Browse the repository at this point in the history
Improved support for ad hoc signed binaries in UI
  • Loading branch information
objective-see committed Feb 2, 2024
1 parent cf20472 commit 9634524
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions LuLu/App/RulesWindowController.m
Original file line number Diff line number Diff line change
Expand Up @@ -942,6 +942,11 @@ -(NSString*)formatItemDetails:(Rule*)rule
details = [NSString stringWithFormat:@"%@ (signer: %@)", rule.csInfo[KEY_CS_ID], [rule.csInfo[KEY_CS_AUTHS] firstObject]];
break;

//ad hoc
case AdHoc:
details = [NSString stringWithFormat:@"%@ (signer: %@)", rule.csInfo[KEY_CS_ID], @"Ad hoc"];
break;

default:
break;
}
Expand Down

0 comments on commit 9634524

Please sign in to comment.