remove ft_proxies_cache option, not used
anymore, replaced by proxy65_manager
This commit is contained in:
parent
aa73f2d862
commit
7418be2323
|
@ -246,11 +246,6 @@ class Config:
|
||||||
'user': [ opt_str, '' ],
|
'user': [ opt_str, '' ],
|
||||||
'pass': [ opt_str, '' ],
|
'pass': [ opt_str, '' ],
|
||||||
}, {}),
|
}, {}),
|
||||||
'ft_proxies65_cache': ({
|
|
||||||
'host': [ opt_str, ''],
|
|
||||||
'port': [ opt_str, '7777'],
|
|
||||||
'jid': [ opt_str, ''],
|
|
||||||
}, {}),
|
|
||||||
'themes': ({
|
'themes': ({
|
||||||
'accounttextcolor': [ opt_color, 'black', '', True ],
|
'accounttextcolor': [ opt_color, 'black', '', True ],
|
||||||
'accountbgcolor': [ opt_color, 'white', '', True ],
|
'accountbgcolor': [ opt_color, 'white', '', True ],
|
||||||
|
@ -516,8 +511,3 @@ class Config:
|
||||||
# set initial cache values for proxie65 hosts
|
# set initial cache values for proxie65 hosts
|
||||||
for proxy in self.ft_proxies65_default:
|
for proxy in self.ft_proxies65_default:
|
||||||
default = self.ft_proxies65_default[proxy]
|
default = self.ft_proxies65_default[proxy]
|
||||||
self.add_per('ft_proxies65_cache', proxy)
|
|
||||||
self.set_per('ft_proxies65_cache', proxy, 'host', default[0])
|
|
||||||
self.set_per('ft_proxies65_cache', proxy, 'port', default[1])
|
|
||||||
self.set_per('ft_proxies65_cache', proxy, 'jid', default[2])
|
|
||||||
return
|
|
||||||
|
|
Loading…
Reference in New Issue