- Improve propfind handler

- remove path escapes in fileinfo
- other minor fixes
This commit is contained in:
Mukhtar Akere
2025-05-12 03:35:40 +01:00
parent ffb1745bf6
commit 9de7cfd73b
11 changed files with 160 additions and 88 deletions

View File

@@ -159,7 +159,7 @@ func (q *QBit) createSymlinksWebdav(debridTorrent *debridTypes.Torrent, rclonePa
remainingFiles := make(map[string]debridTypes.File)
for _, file := range files {
remainingFiles[utils.EscapePath(file.Name)] = file
remainingFiles[file.Name] = file
}
ticker := time.NewTicker(100 * time.Millisecond)