Skip to content

Commit

Permalink
Issue #106: Fixed bug where -[MIKMIDIConnectionManager availableDevic…
Browse files Browse the repository at this point in the history
…es] actually returned an NSSet.
  • Loading branch information
Andrew Madsen committed Nov 6, 2015
1 parent 156f10d commit cbe10ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/MIKMIDIConnectionManager.m
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ - (void)scanAndConnectToInitialAvailableDevices
- (void)updateAvailableDevices
{
NSArray *regularDevices = self.deviceManager.availableDevices;
NSMutableSet *result = [NSMutableSet setWithArray:regularDevices];
NSMutableArray *result = [NSMutableArray arrayWithArray:regularDevices];

if (self.includesVirtualDevices) {
NSMutableSet *endpointsInDevices = [NSMutableSet set];
Expand Down

0 comments on commit cbe10ce

Please sign in to comment.