From 4439c7cce6706f035d3832ac0aa0f3440ab1e52b Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Thu, 21 Jan 2016 14:14:29 -0500 Subject: [PATCH] Fix initial app list loading after pairing --- Limelight/Database/TemporaryHost.m | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Limelight/Database/TemporaryHost.m b/Limelight/Database/TemporaryHost.m index 334368f..7e95416 100644 --- a/Limelight/Database/TemporaryHost.m +++ b/Limelight/Database/TemporaryHost.m @@ -14,6 +14,12 @@ @implementation TemporaryHost +- (id) init { + self.appList = [[NSMutableSet alloc] init]; + + return self; +} + - (id) initFromHost:(Host*)host { self = [self init];