mirror of
https://github.com/overte-org/overte.git
synced 2025-08-04 20:06:48 +02:00
Lint fix
This commit is contained in:
parent
858e9650a3
commit
506a414762
1 changed files with 1 additions and 1 deletions
|
@ -183,7 +183,7 @@
|
|||
print(APP_NAME + ": Recording saved to Asset Server as " + url);
|
||||
|
||||
filename = (new Date()).toISOString(); // yyyy-mm-ddThh:mm:ss.sssZ
|
||||
filename = filename.replace(/[-:]|\.\d*Z$/g, "").replace("T", "-") + ".hfr"; // yyyymmmdd-hhmmss.hfr
|
||||
filename = filename.replace(/[\-:]|\.\d*Z$/g, "").replace("T", "-") + ".hfr"; // yyyymmmdd-hhmmss.hfr
|
||||
hash = url.slice(4); // Remove leading "atp:" from url.
|
||||
mappingPath = "/recordings/" + filename;
|
||||
Assets.setMapping(mappingPath, hash, setMappingCallback);
|
||||
|
|
Loading…
Reference in a new issue