This commit is contained in:
Mars 2024-06-10 14:21:42 -04:00
parent 4d1e69bbe5
commit ee61c994ac
Signed by: pupbrained
GPG key ID: 874E22DF2F9DFCB5
2 changed files with 24 additions and 16 deletions

View file

@ -67,10 +67,17 @@ using MRMediaRemoteGetNowPlayingInfoFunction = void (*)(
NSOperatingSystemVersion osVersion = [processInfo operatingSystemVersion];
NSString* version = [NSString stringWithFormat:@"%ld.%ld.%ld",
osVersion.majorVersion,
osVersion.minorVersion,
osVersion.patchVersion];
NSString* version;
if (osVersion.patchVersion == 0) {
version = [NSString stringWithFormat:@"%ld.%ld",
osVersion.majorVersion,
osVersion.minorVersion];
} else {
version = [NSString stringWithFormat:@"%ld.%ld.%ld",
osVersion.majorVersion,
osVersion.minorVersion,
osVersion.patchVersion];
}
// Dictionary to map macOS versions to their respective names
NSDictionary<NSNumber*, NSString*>* versionNames =