Sanitize source download folder name (fixes #4945)

This commit is contained in:
arkon 2021-04-23 08:43:47 -04:00
parent d0bf93ebb7
commit fa31369f99

View File

@ -115,7 +115,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())
}
/**