Skip to content

Commit e82ed77

Browse files
Scott DoverScott Dover
Scott Dover
authored and
Scott Dover
committed
chore: account for semicolons in move paths
1 parent f93ced3 commit e82ed77

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

client/src/connection/rest/RestSASServerAdapter.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,10 @@ class RestSASServerAdapter implements ContentAdapter {
361361
ifMatch: etag,
362362
fileProperties: {
363363
name: item.name,
364-
path: newFilePath.split(SAS_FILE_SEPARATOR).join("/"),
364+
path: newFilePath
365+
.split(SAS_FILE_SEPARATOR)
366+
.join("/")
367+
.replace(/~sc~/g, ";"),
365368
},
366369
};
367370

0 commit comments

Comments
 (0)