Skip to content

Commit 2f82182

Browse files
committed
Fixed SMC filtering
1 parent 9fc3a4b commit 2f82182

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Hot/Classes/SMC/SMC.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ - ( oneway void )dealloc
135135

136136
for( NSNumber * key in self.keys )
137137
{
138-
if( filter == nil || filter( key.unsignedIntValue ) == NO )
138+
if( filter != nil && filter( key.unsignedIntValue ) == NO )
139139
{
140140
continue;
141141
}

Hot/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<key>CFBundleShortVersionString</key>
2020
<string>1.8.0</string>
2121
<key>CFBundleVersion</key>
22-
<string>118</string>
22+
<string>127</string>
2323
<key>LSApplicationCategoryType</key>
2424
<string>public.app-category.utilities</string>
2525
<key>LSMinimumSystemVersion</key>

0 commit comments

Comments
 (0)