mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-18 22:26:30 +01:00
don't include relay in default address for new games!!!
This commit is contained in:
parent
c21307c5b1
commit
d88c050ab2
1 changed files with 3 additions and 1 deletions
|
@ -491,7 +491,9 @@ public class XWPrefs {
|
|||
result = new CommsConnTypeSet();
|
||||
if ( getRelayEnabled( context ) ) {
|
||||
result.add( CommsConnType.COMMS_CONN_MQTT );
|
||||
result.add( CommsConnType.COMMS_CONN_RELAY );
|
||||
if ( !BuildConfig.NO_NEW_RELAY ) {
|
||||
result.add( CommsConnType.COMMS_CONN_RELAY );
|
||||
}
|
||||
}
|
||||
if ( BTUtils.BTEnabled() ) {
|
||||
result.add( CommsConnType.COMMS_CONN_BT );
|
||||
|
|
Loading…
Reference in a new issue