Skip to content

Commit

Permalink
ab#61881
Browse files Browse the repository at this point in the history
  • Loading branch information
leefine02 authored and leefine02 committed Aug 26, 2024
1 parent a6c910c commit 5f8b05b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CitrixAdcOrchestratorJobExtension/CitrixAdcStore.cs
Original file line number Diff line number Diff line change
Expand Up @@ -606,7 +606,7 @@ private systemfile GetSystemFile(string fileName)

//option.set_args($"filelocation:{urlPath},filename:{fileName}");
option.filelocation = StorePath;
var f = new systemfile { filelocation = StorePath, filename = fileName };
var f = new systemfile { filelocation = StorePath, filename = fileName.Substring(fileName.LastIndexOf("/") + 1) };
var result = systemfile.get(_nss, f);
Logger.LogDebug("Exiting GetSystemFile(string fileName)");
return result;
Expand Down

0 comments on commit 5f8b05b

Please sign in to comment.