1
0
Fork 0
mirror of https://github.com/syncthing/syncthing-android.git synced 2024-11-23 04:41:16 +00:00

Allow empty device names.

This commit is contained in:
Felix Ableitner 2016-01-21 23:11:46 +01:00
parent d062f07820
commit 13870c0424
2 changed files with 0 additions and 8 deletions

View file

@ -317,11 +317,6 @@ public class DeviceFragment extends Fragment implements
.show();
return true;
}
if (isEmpty(mDevice.name)) {
Toast.makeText(getActivity(), R.string.device_name_required, Toast.LENGTH_LONG)
.show();
return true;
}
mSyncthingService.getApi().editDevice(mDevice, getActivity(), this);
getActivity().finish();
return true;

View file

@ -190,9 +190,6 @@
<!-- Toast shown when trying to create a device with an empty ID -->
<string name="device_id_required">The device ID must not be empty</string>
<!-- Toast shown when trying to create a device with an empty name -->
<string name="device_name_required">The device name must not be empty</string>
<!-- Content description for device ID qr code icon -->
<string name="scan_qr_code_description">Scan QR Code</string>