Explorar el Código

fix(lint): bad condition branch

charlie hace 4 años
padre
commit
2e3becef1c
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/main/frontend/handler/plugin.cljs

+ 1 - 1
src/main/frontend/handler/plugin.cljs

@@ -99,7 +99,7 @@
                 (state/reset-all-updates-state)
                 (throw e))))
         (fn [mfts]
-          (when-let [mft (some #(when (= (:id %) id) %) mfts)]
+          (if-let [mft (some #(when (= (:id %) id) %) mfts)]
             (ipc/ipc "updateMarketPlugin" (merge (dissoc pkg :logger) mft))
             (throw (js/Error. (str ":not-found-in-marketplace" id))))
           true))