Skip to content

Commit

Permalink
+ (Core) Updated Obsidian Login block error message when passwordless…
Browse files Browse the repository at this point in the history
… code fails to send to mobile phone.
  • Loading branch information
joshuahenninger committed Oct 30, 2023
1 parent 5c2d760 commit e8366fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Rock/Security/Authentication/PasswordlessAuthentication.cs
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ public SendOneTimePasscodeResult SendOneTimePasscode( SendOneTimePasscodeOptions
return new SendOneTimePasscodeResult()
{
IsSuccessful = false,
ErrorMessage = $"{passwordlessSystemCommunication.Title} System Communication is not configured for SMS",
ErrorMessage = "Unable to send confirmation code. Make sure to use a mobile phone that can receive text messages.",
State = null
};
}
Expand Down

1 comment on commit e8366fb

@jonrob08
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good to me!

Please sign in to comment.