1
0
mirror of https://github.com/altlinux/gpupdate.git synced 2025-03-21 18:50:38 +03:00

Fix for Firefox's homepage setter

This commit is contained in:
Игорь Чудов 2019-12-04 05:24:27 +04:00
parent ba1d510c1d
commit f53420414f
Signed by untrusted user: nir
GPG Key ID: 0F3883600CAE7AAC

View File

@ -54,12 +54,12 @@ class firefox_applier:
Query the Homepage property from the storage.
'''
homepage = dict({
'Homepage': 'about:config',
'URL': 'about:config',
'Locked': True,
'StartPage': 'homepage'
})
response = self.get_hklm_string_entry_default('Homepage\\URL', 'about:config')
homepage['Homepage'] = response
homepage['URL'] = response
return homepage
def get_block_about_config(self):