Skip to content

Commit

Permalink
fix profile compiler type error
Browse files Browse the repository at this point in the history
  • Loading branch information
imchoi committed May 8, 2018
1 parent eb31a9d commit d90073c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iOS/lynx/app/application_info.mm
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ @implementation LynxApplicationInfo
- (id) initWithManifest:(NSDictionary*)manifest {
self = [super init];
if(self) {
_debugable = [manifest objectForKey:@"debug"];
_debugable = [[manifest objectForKey:@"debug"] boolValue];
NSDictionary* appInfo = [manifest objectForKey:@"application"];
_packageName = [appInfo objectForKey:@"packageName"];
_mainPage = [[appInfo objectForKey:@"mainPage"] stringByDeletingPathExtension];
Expand Down

0 comments on commit d90073c

Please sign in to comment.