Sanitize source download folder name (fixes #4945)
(cherry picked from commit fa31369f99a1b25d669b7534960192a85fdd1e1f)
This commit is contained in:
parent
80bf908133
commit
bda4aae83d
1 changed files with 1 additions and 1 deletions
|
|
@ -139,7 +139,7 @@ class DownloadProvider(private val context: Context) {
|
|||
* @param source the source to query.
|
||||
*/
|
||||
fun getSourceDirName(source: Source): String {
|
||||
return source.toString()
|
||||
return DiskUtil.buildValidFilename(source.toString())
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in a new issue