We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bbb7488 commit 247da61Copy full SHA for 247da61
1 file changed
server/controller/socket/global.js
@@ -10,7 +10,8 @@ const Global = {
10
// (Konrad) Since we cannot pass file path with "\" they were replaced with illegal pipe char "|".
11
// (Konrad) RSN and A360 paths will have forward slashes instead of back slashes.
12
const isRevitServer = uri.match(/rsn:/i)
13
- const isCloudModel = uri.match(/^(?!rsn).*:\/\//i)
+ const isCloudModel = uri.match(/^(?!rsn).*:[\\|]{2}/i)
14
+
15
let rgx
16
if (isRevitServer || isCloudModel) {
17
rgx = uri.replace(/\|/g, '/').toLowerCase()
0 commit comments