Skip to content

Commit

Permalink
v9.9
Browse files Browse the repository at this point in the history
- CHANGELOG | Add entry about fixed YDNS test
  • Loading branch information
MichaIng committed Oct 31, 2024
1 parent cd69ec9 commit 10e351a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Enhancements:

Bug fixes:
- NanoPi M1 Plus | Resolved an issue where Ethernet did not work because of a faulty kernel patch. Many thanks to @InnovoMagicCube and @InnovoDeveloper for reporting this issue: https://github.com/MichaIng/DietPi/issues/6974
- DietPi-DDNS | Resolved an issue where the YDNS update test failed due to a changed response from the server API. Many thanks to @NatureHog for reporting and solving the issue: https://github.com/MichaIng/DietPi/pull/7262

As always, many smaller code performance and stability improvements, visual and spelling fixes have been done, too much to list all of them here. Check out all code changes of this release on GitHub: https://github.com/MichaIng/DietPi/pull/ADDME

Expand Down
4 changes: 2 additions & 2 deletions dietpi/dietpi-ddns
Original file line number Diff line number Diff line change
Expand Up @@ -226,12 +226,12 @@ Apply()
[[ $PROVIDER == 'YDNS' && $result != 'good'* && $result != 'nochg'* ]] ||
[[ $PROVIDER == 'Dynu' && $result != 'good'* && $result != 'nochg'* ]]
then
G_DIETPI-NOTIFY 1 "DDNS update test failed, please check your input${result:+:\n$result}"
STATUS="DDNS update test failed, please check your input${result:+:\n$result}"
G_DIETPI-NOTIFY 1 "$STATUS"
return 1
else
G_DIETPI-NOTIFY 2 "DDNS update test succeeded${result:+:\n$result}"
STATUS="DDNS update test succeeded${result:+:\n$result}"
G_DIETPI-NOTIFY 2 "$STATUS"
fi

# Check and in case remove obsolete No-IP client
Expand Down

0 comments on commit 10e351a

Please sign in to comment.