Merge remote-tracking branch 'origin/feat/updater/refactor' into feat/updater/refactor

pull/431/head
Lucas Nogueira 2 years ago
commit 6741921461
No known key found for this signature in database
GPG Key ID: FFEA6C72E73482F1

@ -61,7 +61,7 @@ class Update {
}
}
/** Check for updates, returns `null` if no updates are available */
/** Check for updates, resolves to `null` if no updates are available */
async function check(options?: CheckOptions): Promise<Update | null> {
return invoke<UpdateMetadata>("plugin:updater|check", { ...options }).then(
(meta) => (meta.available ? new Update(meta) : null)

Loading…
Cancel
Save