From 91ca9fb11e3e85bba84b4ea6fbbb1a3755f461a8 Mon Sep 17 00:00:00 2001 From: Jacob Gunther Date: Sun, 23 Apr 2023 16:27:20 -0500 Subject: [PATCH] Change deprecation warning --- src/util.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util.go b/src/util.go index ceda468..d941218 100644 --- a/src/util.go +++ b/src/util.go @@ -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.") }