-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
changing Client's name has no effect #63
Comments
I cannot reproduce it, neither on my Pixel 4a (android 13), nor on my Pixel 7a (android 14). There is actually one change that could potentially cause this issue. This change was done by Android Studio's It checks for equality of the client settings before and after editing: The old code line: if (name != null ? !name.equals(that.name) : that.name != null) return false; the new line: if (!Objects.equals(name, that.name)) return false; I'm by far not a Java expert, but the code looks valid and good to me. |
I've reverted the commit 0c12b33, please try the CI built: |
thx...checked, but branch does not fix the problem. "develop_snapshot-87894bf1be4f3ae59fede72270c5991da5c15b8b" |
Should be fixed now with 21c7389, please try this CI build: https://github.com/badaix/snapdroid/actions/runs/8784143765 |
thx, tested for name change and latency change. |
Fixed in Snapdroid v0.28.0.1 |
running 0-28-0-snapserver (thanks for updating!!!) on proxmox-container.
PRETTY_NAME="Ubuntu 22.04.4 LTS" NAME="Ubuntu" VERSION_ID="22.04" VERSION="22.04.4 LTS (Jammy Jellyfish)" VERSION_CODENAME=jammy ID=ubuntu ID_LIKE=debian HOME_URL="https://www.ubuntu.com/" SUPPORT_URL="https://help.ubuntu.com/" BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" UBUNTU_CODENAME=jammy
additionall manual install of libflac12 (just information - find it here)
wget http://ftp.de.debian.org/debian/pool/main/f/flac/libflac12_1.4.2+ds-2_amd64.deb
When changing client's name via "details" in web-Interface ip:1780 it works and is being reflected to any/android-client immediately
When I change client's name via "details" in current 0.28.0-snapcast-android-client the new name is not adopted.
reverting to 0.27.0-android-client works as expected: names can be changed
Android-verson=13
cleaned cache/reinstalled both version on android device -> seems to be an issue with 0.28.0-android-client
The text was updated successfully, but these errors were encountered: