mirror of
https://github.com/moonlight-stream/moonlight-ios.git
synced 2025-07-26 22:24:40 +00:00
Copy the pair state into the temporary host
This commit is contained in:
parent
f8e2ca8500
commit
9aa9b0fc5a
@ -23,6 +23,7 @@
|
|||||||
self.mac = host.mac;
|
self.mac = host.mac;
|
||||||
self.name = host.name;
|
self.name = host.name;
|
||||||
self.uuid = host.uuid;
|
self.uuid = host.uuid;
|
||||||
|
self.pairState = [host.pairState intValue];
|
||||||
|
|
||||||
NSMutableSet *appList = [[NSMutableSet alloc] init];
|
NSMutableSet *appList = [[NSMutableSet alloc] init];
|
||||||
|
|
||||||
@ -43,6 +44,7 @@
|
|||||||
parentHost.mac = self.mac;
|
parentHost.mac = self.mac;
|
||||||
parentHost.name = self.name;
|
parentHost.name = self.name;
|
||||||
parentHost.uuid = self.uuid;
|
parentHost.uuid = self.uuid;
|
||||||
|
parentHost.pairState = [NSNumber numberWithInt:self.pairState];
|
||||||
|
|
||||||
NSMutableSet *applist = [[NSMutableSet alloc] init];
|
NSMutableSet *applist = [[NSMutableSet alloc] init];
|
||||||
for (TemporaryApp* app in self.appList) {
|
for (TemporaryApp* app in self.appList) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user