Skip to content

Commit

Permalink
Merge branch 'convergence-dev' into convergence
Browse files Browse the repository at this point in the history
  • Loading branch information
jasoncoolmax committed Jun 10, 2016
2 parents a3990ea + 10dcdc4 commit 56bb8bd
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion ADALiOS/ADALiOS/ADKeychainTokenCacheStore.m
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
#import "ADProfileInfo.h"
#import "ADKeychainQuery.h"
#import "ADKeychainItem.h"
#import "ADWorkPlaceJoinUtil.h"


/************************************************************************************************
Expand Down Expand Up @@ -85,7 +86,12 @@ - (id)initWithGroup:(NSString *)sharedGroup
return nil;
}

_sharedGroup = sharedGroup;
if (!sharedGroup)
{
sharedGroup = [[NSBundle mainBundle] bundleIdentifier];
}

_sharedGroup = [[NSString alloc] initWithFormat:@"%@.%@", [[ADWorkPlaceJoinUtil WorkPlaceJoinUtilManager] getApplicationIdentifierPrefix], sharedGroup];
_serviceKey = s_kDefaultADALServiceKey;

return self;
Expand Down

0 comments on commit 56bb8bd

Please sign in to comment.