We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 838dcca + 4f82ee1 commit 349a4d1Copy full SHA for 349a4d1
oauth2-server-core/src/main/java/nl/myndocs/oauth2/CallRouter.kt
@@ -29,7 +29,7 @@ class CallRouter(
29
const val STATUS_BAD_REQUEST = 400
30
const val STATUS_UNAUTHORIZED = 401
31
32
- private val unauthorizedResponse = mapOf("message" to "anauthorized")
+ private val unauthorizedResponse = mapOf("message" to "unauthorized")
33
}
34
35
fun route(callContext: CallContext) {
@@ -190,4 +190,4 @@ class CallRouter(
190
this.respondStatus(STATUS_UNAUTHORIZED)
191
this.respondJson(unauthorizedResponse)
192
193
-}
+}
0 commit comments