Skip to content

Commit

Permalink
Fixing an error when upgrading to 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
modos189 committed Oct 2, 2020
1 parent 5d8f81e commit 0e199aa
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/updater.js
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,8 @@ function rebuildingArrayCategoriesPlugins(categories, raw_plugins, plugins_local

// Build local plugins
Object.keys(plugins_local).forEach(plugin_uid => {
data[plugin_uid]['status'] = plugins_local[plugin_uid]['status'];
if (data[plugin_uid] && plugins_local[plugin_uid])
data[plugin_uid]['status'] = plugins_local[plugin_uid]['status'];
});

// Build External plugins
Expand Down

0 comments on commit 0e199aa

Please sign in to comment.