mirror of
https://github.com/qdm12/ddns-updater.git
synced 2026-08-02 10:38:41 -04:00
Bug: Noip incorrectly parsing password with special chars #463
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @DomenicoCasillo on GitHub (Nov 11, 2024).
TLDR: Noip password is not parsed correctly if containing special characters
9caf1be)Logs:
Configuration file (remove your credentials!):
Host OS: LXC Debian
@qdm12 commented on GitHub (Nov 12, 2024):
Hi there! So your password (replaced with
AAAAAA) contains a$sign and anything after is removed?It might be a problem with how to set in your docker-compose.yml, see https://stackoverflow.com/a/40621373 on how to escape such sign.Never mind this is read from the json config, sorry. Checking now... 👀@qdm12 commented on GitHub (Nov 12, 2024):
It works for me with the same config file you shared:
Are you sure you are using the right config.json file and/or saved it correctly??
@DomenicoCasillo commented on GitHub (Nov 14, 2024):
I was supplying the config string through CONFIG env in docker-compose.yml. Escaping the
$with double$$fixed the issue.Thanks for the tip.