mirror of
https://github.com/moonlight-stream/moonlight-android.git
synced 2025-07-23 04:52:48 +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!");
|
LimeLog.severe("Polling returned no UUID!");
|
||||||
return null;
|
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!
|
// We got the wrong PC!
|
||||||
LimeLog.info("Polling returned the wrong PC!");
|
LimeLog.info("Polling returned the wrong PC!");
|
||||||
return null;
|
return null;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user