From dc5210f6918501430eda1d6726a71ca6202c9963 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Sun, 12 Jul 2015 00:12:53 -0700 Subject: [PATCH] Propagate the running flag to the applist cache --- Limelight/ViewControllers/MainFrameViewController.m | 1 + 1 file changed, 1 insertion(+) diff --git a/Limelight/ViewControllers/MainFrameViewController.m b/Limelight/ViewControllers/MainFrameViewController.m index 3b67b6f2..58f8f0d3 100644 --- a/Limelight/ViewControllers/MainFrameViewController.m +++ b/Limelight/ViewControllers/MainFrameViewController.m @@ -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; }