Skip to content
This repository was archived by the owner on Sep 20, 2023. It is now read-only.

Commit ba8913f

Browse files
authored
fix people selection bug (#2458)
1 parent a530ce9 commit ba8913f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Classes/People/PeopleViewController.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ PeopleSectionControllerDelegate {
7979

8080
func selectionChanged(newValues: [IssueAssigneeViewModel]) -> Bool {
8181
// pretty hacky but oh well
82-
return Set<String>(newValues.map { $0.login }) == selections
82+
return Set<String>(newValues.map { $0.login }) != selections
8383
}
8484

8585
func updateClearButtonEnabled() {

0 commit comments

Comments
 (0)