Help understanding why execute.capture
isn't capturing
#1278
-
I've searched around looking for examples of
and modified it accordingly to
Restarting rtorrent gives me "Junk at end of input". I didn't think this was right, but I tried it anyway. Changed it to
With this, if I execute an rpc call with
What am I missing here? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
|
Beta Was this translation helpful? Give feedback.
string|const|private
means that this command can only ever return a constant string, which is what you're seeing. You'd need to change it back to juststring|private
, but I'd recommend usingsystem.env
instead for this specific use case.