Merge pull request #8070 from electron/remove-unnecessary-escape-characters
Remove unnecessary escape characters
This commit is contained in:
commit
27625d2665
1 changed files with 1 additions and 1 deletions
|
@ -29,7 +29,7 @@ class CallbacksRegistry {
|
|||
if (location.indexOf('electron.asar') !== -1) {
|
||||
continue
|
||||
}
|
||||
ref = /([^\/^\)]*)\)?$/gi.exec(location)
|
||||
ref = /([^/^)]*)\)?$/gi.exec(location)
|
||||
filenameAndLine = ref[1]
|
||||
break
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue