fix(lint): bad condition branch

pull/3925/head
charlie 2022-01-17 10:50:33 +08:00 committed by Andelf
parent 4e9c6bceb4
commit 2e3becef1c
1 changed files with 1 additions and 1 deletions

View File

@ -99,7 +99,7 @@
(state/reset-all-updates-state) (state/reset-all-updates-state)
(throw e)))) (throw e))))
(fn [mfts] (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)) (ipc/ipc "updateMarketPlugin" (merge (dissoc pkg :logger) mft))
(throw (js/Error. (str ":not-found-in-marketplace" id)))) (throw (js/Error. (str ":not-found-in-marketplace" id))))
true)) true))