Fix initial app list loading after pairing

This commit is contained in:
Cameron Gutman 2016-01-21 14:14:29 -05:00
parent b8a4093c75
commit 4439c7cce6

View File

@ -14,6 +14,12 @@
@implementation TemporaryHost @implementation TemporaryHost
- (id) init {
self.appList = [[NSMutableSet alloc] init];
return self;
}
- (id) initFromHost:(Host*)host { - (id) initFromHost:(Host*)host {
self = [self init]; self = [self init];