mirror of https://github.com/aria2/aria2
Don't send back rpc-secret option value in aria2.getGlobalOption RPC method
parent
762ab15450
commit
c17b98a9fc
|
@ -1163,7 +1163,7 @@ std::unique_ptr<ValueBase> GetGlobalOptionRpcMethod::process
|
||||||
auto result = Dict::g();
|
auto result = Dict::g();
|
||||||
for(size_t i = 0, len = e->getOption()->getTable().size(); i < len; ++i) {
|
for(size_t i = 0, len = e->getOption()->getTable().size(); i < len; ++i) {
|
||||||
PrefPtr pref = option::i2p(i);
|
PrefPtr pref = option::i2p(i);
|
||||||
if(!e->getOption()->defined(pref)) {
|
if(pref == PREF_RPC_SECRET || !e->getOption()->defined(pref)) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
const OptionHandler* h = getOptionParser()->find(pref);
|
const OptionHandler* h = getOptionParser()->find(pref);
|
||||||
|
|
Loading…
Reference in New Issue