Browse Source

fix: Also check single quote on jitsi-meet-tokens install (#13869)

Fixes #13768.
factor2
Javier García 2 years ago
parent
commit
7e633f0136
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      debian/jitsi-meet-tokens.postinst

+ 1
- 1
debian/jitsi-meet-tokens.postinst View File

@@ -39,7 +39,7 @@ case "$1" in
39 39
             echo "Application secret is mandatory"
40 40
         fi
41 41
         # Not allowed unix special characters in secret: /, \, ", ', `
42
-        if echo "$RET" | grep -q '[/\\\"\`]' ; then
42
+        if echo "$RET" | grep -q "[/\\\"\`\']" ; then
43 43
             echo "Application secret contains invalid characters: /, \\, \", ', \`"
44 44
             exit 1
45 45
         fi

Loading…
Cancel
Save