diff --git a/.gitignore b/.gitignore index 1e90a98cf..ed826612c 100644 --- a/.gitignore +++ b/.gitignore @@ -11,4 +11,5 @@ testing.properties .settings .classpath .project -.DS_Store \ No newline at end of file +.DS_Store +/nbproject/ \ No newline at end of file diff --git a/src/main/java/com/omertron/themoviedbapi/tools/MethodSub.java b/src/main/java/com/omertron/themoviedbapi/tools/MethodSub.java index 5180c7634..f79a39e58 100644 --- a/src/main/java/com/omertron/themoviedbapi/tools/MethodSub.java +++ b/src/main/java/com/omertron/themoviedbapi/tools/MethodSub.java @@ -54,7 +54,7 @@ public enum MethodSub { MOVIE_CREDITS("movie_credits"), MOVIE_LIST("movie/list"), MULTI("multi"), - NOW_PLAYING("now-playing"), + NOW_PLAYING("now_playing"), ON_THE_AIR("on_the_air"), PERSON("person"), POPULAR("popular"), @@ -79,7 +79,8 @@ public enum MethodSub { VIDEOS("videos"), WATCHLIST("watchlist"), WATCHLIST_MOVIES("watchlist/movies"), - WATCHLIST_TV("watchlist/tv"); + WATCHLIST_TV("watchlist/tv"), + RELEASE_DATES("release_dates"); private final String value;