Change deprecation warning

This commit is contained in:
Jacob Gunther
2023-04-23 16:27:20 -05:00
parent f5a77a3eb3
commit 91ca9fb11e

View File

@@ -229,5 +229,5 @@ func ExtractUUID(ctx *fiber.Ctx) string {
// SendUsernameDeprecation sends a deprecation warning about usernames.
func SendUsernameDeprecation(ctx *fiber.Ctx) error {
return ctx.Status(http.StatusBadRequest).SendString("Deprecated: Username support has been deprecated since May 1st 2023, please use a valid UUID instead.")
return ctx.Status(http.StatusBadRequest).SendString("Deprecated: Username support has been deprecated since April 23rd 2023, please use a valid UUID instead.")
}