Merge change 2349 into donut
* changes: Change the media key algorithm to also ignore double quotes.
This commit is contained in:
@@ -737,7 +737,7 @@ public final class MediaStore
|
||||
name.endsWith(", a") || name.endsWith(",a")) {
|
||||
name = name.substring(0, name.lastIndexOf(','));
|
||||
}
|
||||
name = name.replaceAll("[\\[\\]\\(\\)'.,?!]", "").trim();
|
||||
name = name.replaceAll("[\\[\\]\\(\\)\"'.,?!]", "").trim();
|
||||
if (name.length() > 0) {
|
||||
// Insert a separator between the characters to avoid
|
||||
// matches on a partial character. If we ever change
|
||||
|
||||
Reference in New Issue
Block a user