Skip to content
Snippets Groups Projects
Unverified Commit e8fea8ad authored by jaguarcy's avatar jaguarcy Committed by GitHub
Browse files

Fix rpc endpoint to avoid "409 Conflict" errors

RPC endpoint needs to end in a "/", since the CSRF checks will fail in transmission if it doesn't, returning a 409 Conflict error instead.
parent b55764af
Branches
No related tags found
No related merge requests found
......@@ -8,7 +8,7 @@ import (
"strings"
)
const endpoint = "/transmission/rpc"
const endpoint = "/transmission/rpc/"
type (
// User to authenticate with Transmission
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment