Skip to content

Commit

Permalink
Merge pull request #45 from p-hueber/sonarr_auth_fix
Browse files Browse the repository at this point in the history
Sonarr auth fix
  • Loading branch information
p-hueber authored Apr 17, 2024
2 parents d400279 + 24987bf commit 577ce2a
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.7.1] - 2024-04-17

### Fixed

- Fix an authentication issue with Sonarr.


## [0.7.0] - 2024-04-14

### Added
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "prefetcharr"
version = "0.7.0"
version = "0.7.1"
edition = "2021"
authors = ["Paul Hüber"]
license = "MIT OR Apache-2.0"
Expand Down
3 changes: 2 additions & 1 deletion src/sonarr.rs
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,8 @@ impl Client {
.push("v3")
.push("command");

let response = reqwest::Client::new()
let response = self
.client
.post(url)
.json(&cmd)
.send()
Expand Down

0 comments on commit 577ce2a

Please sign in to comment.