From b935f4798cea7f73a3851df9b801b1cde2d9e338 Mon Sep 17 00:00:00 2001 From: Eccentric Date: Sat, 20 Jan 2024 23:08:14 +0000 Subject: [PATCH] Improve response times by ~20ms --- handlers/client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/handlers/client.go b/handlers/client.go index 0bc8dd1..6335159 100644 --- a/handlers/client.go +++ b/handlers/client.go @@ -77,7 +77,7 @@ func PostClientProfileAction(c *fiber.Ctx) error { } revision++ profile.Revision = revision - profile.Save() + go profile.Save() delete(profileSnapshots, profile.Type) multiUpdate := []aid.JSON{}