Skip to content

Commit

Permalink
Fix service bug
Browse files Browse the repository at this point in the history
  • Loading branch information
drewconner committed Dec 6, 2016
1 parent 1f5cabe commit 82c628f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DCKeychainItemWrapper/DCKeychainItemWrapper.m
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ - (void)initializeData {
// Default attributes for keychain item.
[self.keychainItemData setObject:self.identifier forKey:(__bridge id)kSecAttrGeneric];
[self.keychainItemData setObject:self.identifier forKey:(__bridge id)kSecAttrAccount];
[self.keychainItemData setObject:[[NSBundle mainBundle] bundleIdentifier] forKey:(__bridge id)kSecAttrService];
[self.keychainItemData setObject:self.service forKey:(__bridge id)kSecAttrService];

[self.keychainItemData setObject:@"" forKey:(__bridge id)kSecAttrLabel];
[self.keychainItemData setObject:@"" forKey:(__bridge id)kSecAttrDescription];
Expand Down

0 comments on commit 82c628f

Please sign in to comment.