remove extra slash in OAuth authorize url (#2425)

This commit is contained in:
Konrad Pozniak 2022-04-13 19:22:09 +02:00 committed by GitHub
parent b4a913b2d5
commit c705e9cbbb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ import retrofit2.http.Query
interface MastodonApi {
companion object {
const val ENDPOINT_AUTHORIZE = "/oauth/authorize"
const val ENDPOINT_AUTHORIZE = "oauth/authorize"
const val DOMAIN_HEADER = "domain"
const val PLACEHOLDER_DOMAIN = "dummy.placeholder"
}