themoviedb 0.0.2 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/themoviedb.rb +1 -1
- data/lib/themoviedb/movie.rb +1 -1
- metadata +1 -1
data/lib/themoviedb.rb
CHANGED
data/lib/themoviedb/movie.rb
CHANGED
|
@@ -108,7 +108,7 @@ module Tmdb
|
|
|
108
108
|
#Get the similar movies for a specific movie id.
|
|
109
109
|
def self.similar_movies(id, conditions={})
|
|
110
110
|
search = Tmdb::Search.new("/#{self.endpoints[:singular]}/#{self.endpoint_id + id.to_s}/similar_movies")
|
|
111
|
-
search.fetch_response
|
|
111
|
+
search.fetch_response['results']
|
|
112
112
|
end
|
|
113
113
|
|
|
114
114
|
#Get the lists that the movie belongs to.
|