Hotfixes:
- Fix % error in url encode - FIx alldebrid downloading bug - Fix dupicate checks for newly added torrents
This commit is contained in:
@@ -10,3 +10,12 @@ func EscapePath(path string) string {
|
||||
|
||||
return escapedPath
|
||||
}
|
||||
|
||||
func UnescapePath(path string) string {
|
||||
// unescape %
|
||||
unescapedPath := strings.ReplaceAll(path, "%25", "%")
|
||||
|
||||
// add others
|
||||
|
||||
return unescapedPath
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user