Compare commits

...

2 Commits

Author SHA1 Message Date
32900d89e3 Bump version: 1.4.16 → 1.4.17
All checks were successful
Build and Publish Docker Image / build-and-push (push) Successful in 1m23s
2025-08-18 15:41:43 +01:00
0e4379d40d fix config key? 2025-08-18 15:41:36 +01:00
3 changed files with 4 additions and 3 deletions

View File

@ -1,5 +1,5 @@
[tool.bumpversion]
current_version = "1.4.16"
current_version = "1.4.17"
commit = true
tag = true
tag_name = "{new_version}"

View File

@ -1 +1 @@
1.4.16
1.4.17

3
app.py
View File

@ -558,8 +558,9 @@ def _update_npm_config(credentials=None):
print("Unauthorized attempt to update NPM config.")
return False
credentials = session.get("auth_credentials")
# If credentials are provided, we skip the session check as the user has already been authenticated
npm = NginxProxyManager(app.config['NPM_HOST'], app.config['NPM_EMAIL'], app.config['NPM_PASSWORD'])
npm = NginxProxyManager(app_config.NPM_HOST, app_config.NPM_EMAIL, app_config.NPM_PASSWORD)
npm.login()
host = npm.get_proxy_host(9)
if host: