We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be49ed4 commit c4bdc69Copy full SHA for c4bdc69
1 file changed
extension/content.js
@@ -253,7 +253,7 @@ function overWriteChromeStorage() {
253
function updateMeetingTitle() {
254
if (document.querySelector(".u6vdEc")) {
255
const title = document.querySelector(".u6vdEc").textContent
256
- const invalidFilenameRegex = /^[a-z0-9-_.() ]+$/i;
+ const invalidFilenameRegex = /[^\w\-_.() ]/g;
257
return title.replace(invalidFilenameRegex, '_')
258
}
259
else
0 commit comments