You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I added two addresses to a device. However, the other device is the one that usually finds the phone and not vice versa.
It seems that the app has a problem with commas in the list of devices because everything works like expected when I add only one address.
Steps to reproduce
Go to the Devices tab and tap "+" to Add Device
Add a Device ID (like the example ID in the Syncthing docs). Then add a name, like TestDevice.
In the addreses, add two values separated by comma and space. I'll use tcp://192.168.0.0, dynamic for this example.
Add device to finish.
Go to Menu -> Web GUI, scroll to the Remote Devices section, and click on TestDevice. There should be two values in the Address row in separate lines.
Expected results
The two values in the Addresses row should be tcp://192.168.0.0 and dynamic
Actual results
The first value is tcp://192.168.0.0,. There shouldn't be a comma at the end.
While on the Web GUI, tap Edit under TestDevice, then go to the Advanced tab, the Addresses box says tcp://192.168.0.0,, dynamic.
If I now Save to close the Edit Device (TestDevice) window without making any changes, and check the Addresses row again, the first address is shown without the comma. It seems that the Syncthing GUI fixed the address.
After this, I exit the Web GUI and click on TestDevice on the Devices tab on the app, and the value of the addresses is now tcp://192.168.0.0 dynamic.
This is what works. In the app I need to separate addresses using only spaces for the values to be stored correctly.
I added two addresses to a device. However, the other device is the one that usually finds the phone and not vice versa.
It seems that the app has a problem with commas in the list of devices because everything works like expected when I add only one address.
Steps to reproduce
tcp://192.168.0.0, dynamic
for this example.Expected results
The two values in the Addresses row should be
tcp://192.168.0.0
anddynamic
Actual results
The first value is
tcp://192.168.0.0,
. There shouldn't be a comma at the end.While on the Web GUI, tap Edit under TestDevice, then go to the Advanced tab, the Addresses box says
tcp://192.168.0.0,, dynamic
.If I now Save to close the Edit Device (TestDevice) window without making any changes, and check the Addresses row again, the first address is shown without the comma. It seems that the Syncthing GUI fixed the address.
After this, I exit the Web GUI and click on TestDevice on the Devices tab on the app, and the value of the addresses is now
tcp://192.168.0.0 dynamic
.This is what works. In the app I need to separate addresses using only spaces for the values to be stored correctly.
Possible cause
The TextWatcher for the address box calls the two following methods:
syncthing-android/app/src/main/java/com/nutomic/syncthingandroid/activities/DeviceActivity.java
Lines 406 to 417 in 7904afd
This looks to me that the app is processing addresses using spaces as delimiters, instead of commas like Syncthing does.
Version Information
The text was updated successfully, but these errors were encountered: