Skip to content

Commit

Permalink
chore: add description for wrong password (#950)
Browse files Browse the repository at this point in the history
  • Loading branch information
tnotheis authored Nov 26, 2024
1 parent 8cbbb4a commit c3e6e16
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ public static ApplicationError NotFound(string recordName = "")
var formattedRecordName = string.IsNullOrEmpty(recordName) ? "Record" : recordName;

return new ApplicationError("error.platform.recordNotFound",
$"{formattedRecordName} not found. Make sure the ID exists and the record is not expired.");
$"{formattedRecordName} not found. Make sure the ID exists and the record is not expired. If a password is required to fetch the record, make sure you passed the correct one.");
}

public static ApplicationError Unauthorized()
Expand Down

0 comments on commit c3e6e16

Please sign in to comment.