fix(lint): bad condition branch

This commit is contained in:
charlie
2022-01-17 10:50:33 +08:00
committed by Andelf
parent 4e9c6bceb4
commit 2e3becef1c

View File

@@ -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))