Skip to content

Commit

Permalink
fixed bug in BezelHUD where the URL was being shown and not the name
Browse files Browse the repository at this point in the history
  • Loading branch information
pjrobertson committed Jul 23, 2011
1 parent 9d5148c commit ebc6449
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OnePasswordSource.m
Expand Up @@ -143,6 +143,7 @@ - (NSArray *)objectsForEntry:(NSDictionary *)theEntry{

QSObject *newObject;
newObject=[QSObject makeObjectWithIdentifier:uuidString];
[newObject setLabel:title];
[newObject setName:title];

if([objectType isEqualToString:@"webforms.WebForm"])
Expand All @@ -151,7 +152,6 @@ - (NSArray *)objectsForEntry:(NSDictionary *)theEntry{

NSString *location = [JSONDict objectForKey:@"location"];
[newObject setObject:uuidString forType:QS1PasswordForm];
[newObject setLabel:location];
[newObject setDetails:location];
[newObject setIcon:[QSResourceManager imageNamed:@"ws.agile.1Password"]];
[newObject setObject:[JSONDict objectForKey:@"locationKey"] forMeta:@"locationKey"];
Expand Down

0 comments on commit ebc6449

Please sign in to comment.