Skip to content

Commit

Permalink
fix(docs): sync upgraderr with json changes (#230)
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleSanderson authored Nov 30, 2024
1 parent 6895fa9 commit 1b6a4f0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/3rd-party-tools/upgraderr.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ http://upgraderr:6940/api/upgrade
"host": "http://qbittorrent:8080",
"user": "username",
"password": "password",
"name": "{{ .TorrentName | js }}"
"name": {{ toRawJson .TorrentName }}
}
```

Expand All @@ -61,7 +61,7 @@ http://upgraderr:6940/api/upgrade
"host": "http://qbittorrent:8080",
"user": "username",
"password": "password",
"name": "{{ .TorrentName | js }}"
"name": {{ toRawJson .TorrentName }}
}
```

Expand All @@ -80,7 +80,7 @@ http://upgraderr:6940/api/cross
"host": "http://qbittorrent:8080",
"user": "username",
"password": "password",
"name": "{{ .TorrentName | js }}",
"name": {{ toRawJson .TorrentName }},
"hash": "{{ .TorrentHash }}",
"torrent": "{{ .TorrentDataRawBytes | js }}"
}
Expand All @@ -90,4 +90,4 @@ http://upgraderr:6940/api/cross

This is a toolchest, other functionality can be achieved by using other return codes, and attaching other tools to actions taken by the application.

More Information: [github.com/kylesanderson/upgraderr](https://github.com/kylesanderson/upgraderr)
More Information: [github.com/kylesanderson/upgraderr](https://github.com/kylesanderson/upgraderr)

0 comments on commit 1b6a4f0

Please sign in to comment.