You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The TrackerReplace field of []string type in type TorrentSetPayload struct does not work as intended. It's used by TorrentSet method (corresponding to transmission torrent-set rpc method) to edit the torrent tracker. TR will return an "invalid argument" rpc error. I have tested it in Transmission 3.0 for Linux.
It should be in []interface{} type and the <trackerId/new announce URLs> pairs should be passed as mixed types of int64 / string.
The text was updated successfully, but these errors were encountered:
Hi
The
TrackerReplace
field of[]string type
intype TorrentSetPayload struct
does not work as intended. It's used by TorrentSet method (corresponding to transmission torrent-set rpc method) to edit the torrent tracker. TR will return an "invalid argument" rpc error. I have tested it in Transmission 3.0 for Linux.It should be in
[]interface{}
type and the <trackerId/new announce URLs> pairs should be passed as mixed types ofint64 / string
.The text was updated successfully, but these errors were encountered: