Il link di un gruppo non può contenere la barra... o altri caratteri speciali
This commit is contained in:
@@ -4423,11 +4423,22 @@ export const tools = {
|
||||
return mystr.replace(/\s+/g, '')
|
||||
},
|
||||
|
||||
removespaces_slash(mystr: string) {
|
||||
removespecial_chars(mystr: string) {
|
||||
mystr = mystr.replace(/\s+/g, '')
|
||||
mystr = mystr.replace(/\//g, '')
|
||||
mystr = mystr.replace(/:/g, '')
|
||||
mystr = mystr.replace(/./g, '')
|
||||
mystr = mystr.replace(/,/g, '')
|
||||
mystr = mystr.replace(/'/g, '')
|
||||
mystr = mystr.replace(/&/g, '')
|
||||
mystr = mystr.replace(/@/g, '')
|
||||
mystr = mystr.replace(/\?/g, '')
|
||||
mystr = mystr.replace(/#/g, '')
|
||||
return mystr
|
||||
},
|
||||
|
||||
removespaces_slash(mystr: string) {
|
||||
mystr = mystr.replace(/\s+/g, '')
|
||||
mystr = mystr.replace(/\//g, '')
|
||||
mystr = mystr.replace(/,/g, '')
|
||||
mystr = mystr.replace(/'/g, '')
|
||||
return mystr
|
||||
@@ -7220,7 +7231,7 @@ export const tools = {
|
||||
} catch (e) {
|
||||
console.error('err getDirectoryGall', e)
|
||||
}
|
||||
console.log('getDirectoryGall', ris)
|
||||
// console.log('getDirectoryGall', ris)
|
||||
return ris
|
||||
},
|
||||
|
||||
|
||||
Reference in New Issue
Block a user