mirror of
https://github.com/overleaf/overleaf.git
synced 2025-01-22 11:41:41 +00:00
Replace all instances of / in file paths in FSPersistorManager
This commit is contained in:
parent
191170509f
commit
5e5f9cf4e5
1 changed files with 1 additions and 1 deletions
|
@ -3,7 +3,7 @@ fs = require("fs")
|
|||
LocalFileWriter = require("./LocalFileWriter")
|
||||
|
||||
filterName = (key) ->
|
||||
return key.replace /\//, "_"
|
||||
return key.replace /\//g, "_"
|
||||
|
||||
|
||||
module.exports =
|
||||
|
|
Loading…
Reference in a new issue