We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e68f766 commit 45cbc6dCopy full SHA for 45cbc6d
src/detection/os/os_apple.m
@@ -25,6 +25,11 @@ static void parseSystemVersion(FFOSResult* os)
25
ffStrbufInitS(&os->version, value.UTF8String);
26
if((value = dict[@"ProductBuildVersion"]))
27
ffStrbufInitS(&os->buildID, value.UTF8String);
28
+ if (ffStrbufStartsWithS(&os->version, "16."))
29
+ {
30
+ // macOS 26 Tahoe. #1809
31
+ os->version.chars[0] = '2';
32
+ }
33
}
34
35
static bool detectOSCodeName(FFOSResult* os)
0 commit comments