Skip to content

Commit

Permalink
Fixes #1297: Reorder loading plugins and deactivating webkit-settings
Browse files Browse the repository at this point in the history
  • Loading branch information
lwindolf committed Oct 17, 2023
1 parent 9ff0294 commit 39a048e
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/plugins_engine.c
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,6 @@ liferea_plugins_engine_init (LifereaPluginsEngine * engine)
PeasPluginInfo *plugin_installer_plugin_info = NULL;

engine->priv = liferea_plugins_engine_get_instance_private (engine);

peas_engine_enable_loader (PEAS_ENGINE (engine), "python3");

engine->priv->plugin_settings = g_settings_new ("net.sf.liferea.plugins");

/* Disable incompatible webkit-settings plugin */
Expand All @@ -78,6 +75,8 @@ liferea_plugins_engine_init (LifereaPluginsEngine * engine)
}
g_free (names);

peas_engine_enable_loader (PEAS_ENGINE (engine), "python3");

/* Require Lifereas's typelib. */
typelib_dir = g_build_filename (PACKAGE_LIB_DIR,
"girepository-1.0", NULL);
Expand Down

0 comments on commit 39a048e

Please sign in to comment.