mirror of
https://github.com/amidaware/tacticalrmm.git
synced 2026-04-26 06:55:52 +03:00
[PR #2381] fix mesh agent downloads failing with wss:// URLs #3883
Labels
No labels
In Process
bug
bug
dev-triage
documentation
duplicate
enhancement
fixed
good first issue
help wanted
integration
invalid
pull-request
question
requires agent update
security
ui tweak
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/tacticalrmm#3883
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/amidaware/tacticalrmm/pull/2381
Author: @Deenyoro
Created: 12/16/2025
Status: 🔄 Open
Base:
develop← Head:fix/mesh-wss-to-https-conversion📝 Commits (2)
5a1b16ffix mesh agent downloads failing with wss:// URLs2711dbfMerge branch 'develop' into fix/mesh-wss-to-https-conversion📊 Changes
1 file changed (+1 additions, -1 deletions)
View changed files
📝
api/tacticalrmm/core/utils.py(+1 -1)📄 Description
The code was only converting ws:// to http:// but not handling wss:// to https://. When using secure websockets, this left the URL as wss:// which broke downloads since requests.get() can't handle websocket URLs.
Added .replace("wss://", "https://") to handle secure websockets.
Fixes the InvalidSchema exception when downloading mesh agents with secure websocket configs.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.