Another NPE fix when ruffy isn't available.
This commit is contained in:
parent
e5a68608a0
commit
2c8c25c082
|
@ -180,6 +180,9 @@ public class RuffyScripter implements RuffyCommands {
|
|||
|
||||
@Override
|
||||
public boolean isConnected() {
|
||||
if (ruffyService == null) {
|
||||
return false;
|
||||
}
|
||||
try {
|
||||
return ruffyService.isConnected() && System.currentTimeMillis() - menuLastUpdated < 5000;
|
||||
} catch (RemoteException e) {
|
||||
|
|
Loading…
Reference in a new issue