diff options
author | metamuffin <metamuffin@disroot.org> | 2024-01-23 04:16:00 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-01-23 04:16:00 +0100 |
commit | e5712e82b369019457cf738a70ae97c67388cbc4 (patch) | |
tree | a3ab191ba5bfd1c900aaabb7e8535624630b7310 /import/src/tmdb.rs | |
parent | 0318a9f925f2507200a5b9b714f20560b770d7b0 (diff) | |
download | jellything-e5712e82b369019457cf738a70ae97c67388cbc4.tar jellything-e5712e82b369019457cf738a70ae97c67388cbc4.tar.bz2 jellything-e5712e82b369019457cf738a70ae97c67388cbc4.tar.zst |
comments and minor changes
Diffstat (limited to 'import/src/tmdb.rs')
-rw-r--r-- | import/src/tmdb.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/import/src/tmdb.rs b/import/src/tmdb.rs index c349edf..5dbc335 100644 --- a/import/src/tmdb.rs +++ b/import/src/tmdb.rs @@ -51,7 +51,7 @@ impl Tmdb { .client .get(&format!( "https://api.themoviedb.org/3/search/{kind}?query={}?api_key={}", - query.replace(" ", "+"), + query.replace(" ", "+"), // TODO this is horrible, please find a proper urlencoding library that supports + for space self.key )) .send() |