AutoRaise
AutoRaise copied to clipboard
missing "return pwa" at is_pwa.
inline bool is_pwa(NSString * bundleIdentifier) {
NSArray * components = [bundleIdentifier componentsSeparatedByString: @"."];
bool pwa = components.count > 4 && [pwas containsObject: components[2]] && [components[3] isEqual: @"app"];
if (verbose && pwa) { NSLog(@"PWA: %@", components[2]); }
}
inline bool is_pwa(NSString * bundleIdentifier) {
NSArray * components = [bundleIdentifier componentsSeparatedByString: @"."];
bool pwa = components.count > 4 && [pwas containsObject: components[2]] && [components[3] isEqual: @"app"];
if (verbose && pwa) { NSLog(@"PWA: %@", components[2]); }
return pwa // add return code
}
@mcmzero
nice catch! will fix this ASAP in master
Fixed in #260