Updated ConfigParser to RawConfigParser; Updated version number
Some checks failed
CodeQL / Analyze (javascript) (push) Has been cancelled
CodeQL / Analyze (python) (push) Has been cancelled
Docker Build and Push / docker_build (push) Has been cancelled
Docker Build and Push / docker_scan (push) Has been cancelled
Mark stale issues and pull requests / stale (push) Has been cancelled

This commit is contained in:
Donald Zou 2025-08-02 16:54:50 +08:00
parent 85d1cc8be4
commit ae160aef23
2 changed files with 3 additions and 3 deletions

View File

@ -25,7 +25,7 @@ from modules.PeerJob import PeerJob
from modules.SystemStatus import SystemStatus from modules.SystemStatus import SystemStatus
SystemStatus = SystemStatus() SystemStatus = SystemStatus()
DASHBOARD_VERSION = 'v4.2.4' DASHBOARD_VERSION = 'v4.2.5'
CONFIGURATION_PATH = os.getenv('CONFIGURATION_PATH', '.') CONFIGURATION_PATH = os.getenv('CONFIGURATION_PATH', '.')
DB_PATH = os.path.join(CONFIGURATION_PATH, 'db') DB_PATH = os.path.join(CONFIGURATION_PATH, 'db')
@ -1765,7 +1765,7 @@ class DashboardConfig:
def __init__(self): def __init__(self):
if not os.path.exists(DASHBOARD_CONF): if not os.path.exists(DASHBOARD_CONF):
open(DASHBOARD_CONF, "x") open(DASHBOARD_CONF, "x")
self.__config = configparser.ConfigParser(strict=False) self.__config = configparser.RawConfigParser(strict=False)
self.__config.read_file(open(DASHBOARD_CONF, "r+")) self.__config.read_file(open(DASHBOARD_CONF, "r+"))
self.hiddenAttribute = ["totp_key", "auth_req"] self.hiddenAttribute = ["totp_key", "auth_req"]
self.__default = { self.__default = {

View File

@ -1,6 +1,6 @@
{ {
"name": "app", "name": "app",
"version": "4.2.3", "version": "4.2.5",
"private": true, "private": true,
"type": "module", "type": "module",
"scripts": { "scripts": {