diff --git a/changelog.d/456.misc b/changelog.d/456.misc new file mode 100644 index 00000000..a37f8c85 --- /dev/null +++ b/changelog.d/456.misc @@ -0,0 +1 @@ +Fix typo in warning message: "Failed to exchnage the token". diff --git a/src/provisioning/api.ts b/src/provisioning/api.ts index 3ba7ba1b..0a7dda91 100644 --- a/src/provisioning/api.ts +++ b/src/provisioning/api.ts @@ -390,7 +390,7 @@ export class ProvisioningApi { res.send({ token, userId }); } catch (ex) { - log.warn(`Failed to exchnage the token for ${server}`, ex); + log.warn(`Failed to exchange the token for ${server}`, ex); throw new ApiError("Failed to exchange token", ErrCode.BadOpenID); } }