Skip to content
This repository has been archived by the owner on Nov 12, 2024. It is now read-only.

Fix TraktAuthModule compile error #748

Merged
merged 1 commit into from
Jan 17, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions trakt-auth/src/main/java/app/tivi/trakt/TraktAuthModule.kt
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,7 @@ object TraktAuthModule {
fun provideAuthConfig(): AuthorizationServiceConfiguration {
return AuthorizationServiceConfiguration(
Uri.parse("https://trakt.tv/oauth/authorize"),
Uri.parse("https://trakt.tv/oauth/token"),
null
Uri.parse("https://trakt.tv/oauth/token")
)
}

Expand Down