1
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2025-10-05 02:42:23 +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:
Stypox
2023-11-16 20:19:01 +01:00
committed by GitHub

View File

@@ -7,6 +7,7 @@ import androidx.preference.PreferenceManager;
import org.schabi.newpipe.R;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public final class FilenameUtils {
@@ -51,7 +52,7 @@ public final class FilenameUtils {
final Pattern pattern = Pattern.compile(charset);
return createFilename(title, pattern, replacementChar);
return createFilename(title, pattern, Matcher.quoteReplacement(replacementChar));
}
/**