Skip to content
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

Fix: The long delay in/out of Tweaks when network services changed #915

Merged
merged 1 commit into from
Jun 18, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions static/build/.tmp_update/script/update_networking.sh
Original file line number Diff line number Diff line change
Expand Up @@ -283,6 +283,7 @@ check_tzid() {
check_ntpstate() {
if flag_enabled NTPState && wifi_enabled; then
current_tz=$(check_tzid)
ntpdate time.google.com &
if [ "$current_tz" != "$old_tz" ]; then
export old_tz="$current_tz"
restart_ntp &
Expand All @@ -294,7 +295,7 @@ restart_ntp() {
export old_tz=$(check_tzid)
set_tzid
log "NTP: Starting NTP with TZ of $TZ"
ntpdate time.google.com
ntpdate time.google.com &
hwclock -w
touch /tmp/time_update
sync
Expand Down Expand Up @@ -334,7 +335,6 @@ set_tzid() {
}

set_tzid
ntpdate time.google.com

is_signup_enabled() { # Used to check signup val for HTTPFS
DB_PATH="/mnt/SDCARD/.tmp_update/bin/filebrowser/filebrowser.db"
Expand Down