From ebc64497b6025a5e104726bc19e0d44a694ead0f Mon Sep 17 00:00:00 2001 From: Patrick Robertson Date: Sat, 23 Jul 2011 09:15:23 +0100 Subject: [PATCH] fixed bug in BezelHUD where the URL was being shown and not the name --- OnePasswordSource.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OnePasswordSource.m b/OnePasswordSource.m index 59738b9..1fc01d2 100644 --- a/OnePasswordSource.m +++ b/OnePasswordSource.m @@ -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"]) @@ -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"];