From 326b9658fd8d1fae65fbe18028507571f3553646 Mon Sep 17 00:00:00 2001 From: antelle Date: Sat, 28 Sep 2019 22:47:00 +0200 Subject: [PATCH] fix #1271: loading custom plugins from config --- app/scripts/plugins/plugin-manager.js | 2 +- release-notes.md | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/app/scripts/plugins/plugin-manager.js b/app/scripts/plugins/plugin-manager.js index 29af30b0..1d045408 100644 --- a/app/scripts/plugins/plugin-manager.js +++ b/app/scripts/plugins/plugin-manager.js @@ -64,7 +64,7 @@ class PluginManager extends Model { } installIfNew(url, expectedManifest, skipSignatureValidation) { - const plugin = this.plugins.find({ url }); + const plugin = this.plugins.find(p => p.url === url); if (plugin && plugin.status !== 'invalid') { return Promise.resolve(); } diff --git a/release-notes.md b/release-notes.md index eb1f2d9d..210f1e77 100644 --- a/release-notes.md +++ b/release-notes.md @@ -2,6 +2,7 @@ Release notes ------------- ##### v1.11.1 (2019-09-28) `-` fix #1270: password change control focus +`-` fix #1271: loading custom plugins from config ##### v1.11.0 (2019-09-28) `+` #1125: field actions: copy, reveal, auto-type