mirror of
https://github.com/moonlight-stream/moonlight-android.git
synced 2026-06-17 06:10:58 +00:00
Fix exception adding PCs
This commit is contained in:
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user