Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
ddboline committed Aug 19, 2024
1 parent 06d65b2 commit deb2de7
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "movie_collection_rust"
version = "0.10.40"
version = "0.10.41"
authors = ["Daniel Boline <[email protected]>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion movie_collection_http/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "movie_collection_http"
version = "0.10.40"
version = "0.10.41"
authors = ["Daniel Boline <[email protected]>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion movie_collection_lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "movie_collection_lib"
version = "0.10.40"
version = "0.10.41"
authors = ["Daniel Boline <[email protected]>"]
edition = "2018"

Expand Down
3 changes: 2 additions & 1 deletion movie_collection_lib/src/imdb_episodes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,8 @@ impl ImdbEpisodes {
) -> Result<impl Stream<Item = Result<Self, PqError>>, Error> {
let query = query!(
r#"
SELECT ie.*, ir.title
SELECT ie.show, ir.title, ie.season, ie.episode, ie.airdate,
ie.rating, ie.eptitle, ie.epurl, ie.id
FROM plex_event pe
JOIN plex_filename pf ON pf.metadata_key = pe.metadata_key
JOIN movie_collection mc ON mc.idx = pf.collection_id
Expand Down
2 changes: 1 addition & 1 deletion transcode_lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "transcode_lib"
version = "0.10.40"
version = "0.10.41"
authors = ["Daniel Boline <[email protected]>"]
edition = "2018"

Expand Down

0 comments on commit deb2de7

Please sign in to comment.