mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 747412 - Installing Favimon does not show the right parenthesis on the desktop shortcut or start menu [r=felipe]
Strip whitespace at the end instead of trailing non-alphanumeric.
This commit is contained in:
parent
54471a2d8d
commit
18bf3a0b8e
@ -688,7 +688,7 @@ function stripStringForFilename(aPossiblyBadFilenameString) {
|
||||
//strip everything from the front up to the first [0-9a-zA-Z]
|
||||
|
||||
let stripFrontRE = new RegExp("^\\W*","gi");
|
||||
let stripBackRE = new RegExp("\\W*$","gi");
|
||||
let stripBackRE = new RegExp("\\s*$","gi");
|
||||
|
||||
let stripped = aPossiblyBadFilenameString.replace(stripFrontRE, "");
|
||||
stripped = stripped.replace(stripBackRE, "");
|
||||
|
Loading…
Reference in New Issue
Block a user