Skip to content

Commit

Permalink
chore: account for semicolons in move paths
Browse files Browse the repository at this point in the history
  • Loading branch information
Scott Dover authored and Scott Dover committed Nov 19, 2024
1 parent f93ced3 commit e82ed77
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion client/src/connection/rest/RestSASServerAdapter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,10 @@ class RestSASServerAdapter implements ContentAdapter {
ifMatch: etag,
fileProperties: {
name: item.name,
path: newFilePath.split(SAS_FILE_SEPARATOR).join("/"),
path: newFilePath
.split(SAS_FILE_SEPARATOR)
.join("/")
.replace(/~sc~/g, ";"),
},
};

Expand Down

0 comments on commit e82ed77

Please sign in to comment.