mirror of
				https://github.com/TeamNewPipe/NewPipe
				synced 2025-10-31 07:13:00 +00:00 
			
		
		
		
	Merge pull request #10489 from sqproman/missing_quotation_replace_char_crash
Quote filename replacement characters to fix crashes when downloading streams with special characters
This commit is contained in:
		| @@ -7,6 +7,7 @@ import androidx.preference.PreferenceManager; | |||||||
|  |  | ||||||
| import org.schabi.newpipe.R; | import org.schabi.newpipe.R; | ||||||
|  |  | ||||||
|  | import java.util.regex.Matcher; | ||||||
| import java.util.regex.Pattern; | import java.util.regex.Pattern; | ||||||
|  |  | ||||||
| public final class FilenameUtils { | public final class FilenameUtils { | ||||||
| @@ -51,7 +52,7 @@ public final class FilenameUtils { | |||||||
|  |  | ||||||
|         final Pattern pattern = Pattern.compile(charset); |         final Pattern pattern = Pattern.compile(charset); | ||||||
|  |  | ||||||
|         return createFilename(title, pattern, replacementChar); |         return createFilename(title, pattern, Matcher.quoteReplacement(replacementChar)); | ||||||
|     } |     } | ||||||
|  |  | ||||||
|     /** |     /** | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Stypox
					Stypox