mirror of
https://github.com/moonlight-stream/moonlight-android.git
synced 2025-07-22 12:33:02 +00:00
Fix exception adding PCs
This commit is contained in:
parent
7e154292a9
commit
814964a100
@ -461,7 +461,8 @@ public class ComputerManagerService extends Service {
|
||||
LimeLog.severe("Polling returned no UUID!");
|
||||
return null;
|
||||
}
|
||||
else if (!details.uuid.equals(newDetails.uuid)) {
|
||||
// details.uuid can be null on initial PC add
|
||||
else if (details.uuid != null && !details.uuid.equals(newDetails.uuid)) {
|
||||
// We got the wrong PC!
|
||||
LimeLog.info("Polling returned the wrong PC!");
|
||||
return null;
|
||||
|
Loading…
x
Reference in New Issue
Block a user