gnu: Add kafs-client
[jackhill/guix/guix.git] / gnu / packages / patches / gpodder-disable-updater.patch
1 Description: 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.
4 Forwarded: not-needed
5 Origin: vendor
6 Author: 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 },