From 72c010374f49fce9d1162e1c04a34ee6bef21af7 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Wed, 5 Feb 2020 23:45:13 +0100 Subject: [PATCH] :fire: Remove unused context handling on http sessions. --- backend/src/uxbox/http/session.clj | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/backend/src/uxbox/http/session.clj b/backend/src/uxbox/http/session.clj index 5dfd76827..5394b65e2 100644 --- a/backend/src/uxbox/http/session.clj +++ b/backend/src/uxbox/http/session.clj @@ -53,5 +53,4 @@ (p/then' (fn [user-id] (if user-id (update data :request assoc :user user-id) - data))) - (vc/handle-on-context))))}) + data))))))})