WIP plugins: install/uninstall
[oweals/peertube.git] / server / helpers / custom-validators / misc.ts
index f72513c1c643cc193baa4f463d22e718b4145fbc..3ef38fce1d0b135625647e24dfbbd3671d86595a 100644 (file)
@@ -9,7 +9,7 @@ function exists (value: any) {
 function isSafePath (p: string) {
   return exists(p) &&
     (p + '').split(sep).every(part => {
-      return [ '', '.', '..' ].includes(part) === false
+      return [ '..' ].includes(part) === false
     })
 }