From 2b3e7023b400a423bfb9b69b7f74b71b3030702d Mon Sep 17 00:00:00 2001 From: Brian Noguchi Date: Wed, 5 Apr 2017 13:18:23 -0700 Subject: [PATCH] GH-862 fix Always set :queued to false in reconcile\! --- src/main/om/next.cljc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/om/next.cljc b/src/main/om/next.cljc index 38396636..d06f4e3d 100644 --- a/src/main/om/next.cljc +++ b/src/main/om/next.cljc @@ -2489,7 +2489,7 @@ q (if-not (nil? remote) (get-in st [:remote-queue remote]) (:queue st))] - (swap! state update-in [:queued] not) + (swap! state assoc :queued false) (if (not (nil? remote)) (swap! state assoc-in [:remote-queue remote] []) (swap! state assoc :queue []))