#70 Ensure -isRunning works as expected even if GCDWebServerOption_AutomaticallySuspendInBackground is enabled

This commit is contained in:
Pierre-Olivier Latour
2014-07-23 07:40:37 -07:00
parent 7544a6dc4e
commit 12b1edb958
+1 -1
View File
@@ -623,7 +623,7 @@ static inline NSString* _EncodeBase64(NSString* string) {
}
- (BOOL)isRunning {
return (_source ? YES : NO);
return (_options ? YES : NO);
}
- (void)stop {