Skip to content

Commit c6ce541

Browse files
committed
fix bug related to removal of plugin reordering.
1 parent 3e04e52 commit c6ce541

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

encryptcontent/plugin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ def on_config(self, config, **kwargs):
302302
if deprecated_options_detected:
303303
logger.warning('DEPRECATED: Features marked as deprecated will be remove in next minor version !')
304304
# Enable experimental code .. :popcorn:
305-
elif self.config['search_index'] == 'dynamically':
305+
if self.config['search_index'] == 'dynamically':
306306
logger.info("EXPERIMENTAL search index encryption enabled.")
307307
self.setup['encrypted_something'] = {**self.config['inject'], **self.config['encrypted_something']} #add inject to encrypted_something
308308
# Get path to site in case of subdir in site_url

0 commit comments

Comments
 (0)