Parse and persist ServerCodecModeSupport attribute for hosts

This commit is contained in:
Cameron Gutman
2018-06-02 13:10:10 -07:00
parent 59506a2364
commit 2d2f71dcab
4 changed files with 9 additions and 0 deletions
+2
View File
@@ -30,6 +30,7 @@
self.name = host.name;
self.uuid = host.uuid;
self.pairState = [host.pairState intValue];
self.serverCodecModeSupport = host.serverCodecModeSupport;
NSMutableSet *appList = [[NSMutableSet alloc] init];
@@ -61,6 +62,7 @@
}
parentHost.name = self.name;
parentHost.uuid = self.uuid;
parentHost.serverCodecModeSupport = self.serverCodecModeSupport;
parentHost.pairState = [NSNumber numberWithInt:self.pairState];
}