Fixed SMC filtering

This commit is contained in:
macmade
2023-02-06 20:57:20 +01:00
parent 9fc3a4b176
commit 2f821824fe
2 changed files with 2 additions and 2 deletions

View File

@@ -135,7 +135,7 @@ NS_ASSUME_NONNULL_END
for( NSNumber * key in self.keys )
{
if( filter == nil || filter( key.unsignedIntValue ) == NO )
if( filter != nil && filter( key.unsignedIntValue ) == NO )
{
continue;
}

View File

@@ -19,7 +19,7 @@
<key>CFBundleShortVersionString</key>
<string>1.8.0</string>
<key>CFBundleVersion</key>
<string>118</string>
<string>127</string>
<key>LSApplicationCategoryType</key>
<string>public.app-category.utilities</string>
<key>LSMinimumSystemVersion</key>