Skip to content

Commit

Permalink
Resolved bug with urls introduced in e31071f (#979)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacob-Tate authored Aug 28, 2024
1 parent 6850055 commit d4a31e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/services/integration/src/komga.rs
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ impl KomgaIntegration {
komga_username: String,
komga_password: String,
) -> Result<(), Box<dyn std::error::Error>> {
let url = format!("{}/sse/v1/", base_url);
let url = format!("{}/sse/v1", base_url);
let client = get_base_http_client(None);

loop {
Expand Down Expand Up @@ -343,7 +343,7 @@ impl KomgaIntegration {
}

async fn process_events(&self, data: komga_events::Data) -> Option<IntegrationMediaSeen> {
let url = format!("{}/api/v1/", self.base_url);
let url = format!("{}/api/v1", self.base_url);
let client = get_base_http_client(None);

let book: komga_book::Item = self
Expand Down

0 comments on commit d4a31e0

Please sign in to comment.