Propagate the running flag to the applist cache

This commit is contained in:
Cameron Gutman
2015-07-12 00:12:53 -07:00
parent 1f02265003
commit dc5210f691

View File

@@ -134,6 +134,7 @@ static NSMutableSet* hostList;
BOOL appAlreadyInList = NO;
for (App* savedApp in host.appList) {
if ([app.id isEqualToString:savedApp.id]) {
savedApp.isRunning = app.isRunning;
appAlreadyInList = YES;
break;
}