gnu: Add kafs-client
[jackhill/guix/guix.git] / gnu / packages / patches / gpodder-disable-updater.patch
CommitLineData
6c36daaa 1Description: Modify the default value for check_on_startup to false.
2 This prevents an privacy/information disclosure unless the user
3 explicitly opts-in for the update check.
4Forwarded: not-needed
5Origin: vendor
6Author: tony mancill <tmancill@debian.org>
7
8--- a/src/gpodder/config.py
9+++ b/src/gpodder/config.py
10@@ -93,7 +93,7 @@
11
12 # Software updates from gpodder.org
13 'software_update': {
14- 'check_on_startup': True, # check for updates on start
15+ 'check_on_startup': False, # check for updates on start
16 'last_check': 0, # unix timestamp of last update check
17 'interval': 5, # interval (in days) to check for updates
18 },