1
0
mirror of https://github.com/Jguer/yay synced 2024-07-08 20:36:24 +00:00

fix(sudoloop): reduce sudoloop sleep, fixes #1379

This commit is contained in:
jguer 2021-03-13 12:08:11 +01:00
parent b7f730a59a
commit 4b476a0e78
No known key found for this signature in database
GPG Key ID: 6D6CC9BEA8556B35

View File

@ -22,7 +22,7 @@ func sudoLoopBackground() {
func sudoLoop() {
for {
updateSudo()
time.Sleep(298 * time.Second)
time.Sleep(241 * time.Second)
}
}