From ff7f8d8027b44ad87883b6832fbeaa93800bc63d Mon Sep 17 00:00:00 2001 From: Oliver Date: Wed, 20 Nov 2024 09:06:12 +1100 Subject: [PATCH] Update src/backend/InvenTree/plugin/installer.py Co-authored-by: Matthias Mair --- src/backend/InvenTree/plugin/installer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/InvenTree/plugin/installer.py b/src/backend/InvenTree/plugin/installer.py index d889b7c699..a0e73668f1 100644 --- a/src/backend/InvenTree/plugin/installer.py +++ b/src/backend/InvenTree/plugin/installer.py @@ -113,7 +113,7 @@ def plugins_file_hash(): return None with pf.open('rb') as f: - return hashlib.md5(f.read()).hexdigest() + return hashlib.sha256(f.read()).hexdigest() def install_plugins_file():