2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-04-28 11:36:44 +00:00

Prevent creation of setting when calculating plugin hash (#8118)

This commit is contained in:
Oliver 2024-09-13 08:57:40 +10:00 committed by GitHub
parent 83d2624a45
commit 26d7cd3d48
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -768,7 +768,7 @@ class PluginsRegistry:
for k in self.plugin_settings_keys():
try:
val = get_global_setting(k)
val = get_global_setting(k, create=False)
msg = f'{k}-{val}'
data.update(msg.encode())