diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-11-29 14:26:54 +0200 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-11-29 14:26:54 +0200 |
| commit | 1e2ae1c1973fd5661815f18c93ee1171a5c08da5 (patch) | |
| tree | 08b3473e7fd141bd379cf7d6d52bd698c307f97c /Software/Visual_Studio/Utilities/Tango.RemoteRunner.UI | |
| parent | 9e6d1ddfb42c4e8357bd75c2b1d6f84df1ea1966 (diff) | |
| download | Tango-1e2ae1c1973fd5661815f18c93ee1171a5c08da5.tar.gz Tango-1e2ae1c1973fd5661815f18c93ee1171a5c08da5.zip | |
Working on machine studio storage module.
Diffstat (limited to 'Software/Visual_Studio/Utilities/Tango.RemoteRunner.UI')
| -rw-r--r-- | Software/Visual_Studio/Utilities/Tango.RemoteRunner.UI/MainWindowVM.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Software/Visual_Studio/Utilities/Tango.RemoteRunner.UI/MainWindowVM.cs b/Software/Visual_Studio/Utilities/Tango.RemoteRunner.UI/MainWindowVM.cs index b25f79452..96af136ba 100644 --- a/Software/Visual_Studio/Utilities/Tango.RemoteRunner.UI/MainWindowVM.cs +++ b/Software/Visual_Studio/Utilities/Tango.RemoteRunner.UI/MainWindowVM.cs @@ -113,9 +113,9 @@ namespace Tango.RemoteRunner.UI private void HandleFileUploadRequest(TangoMessage<FileUploadRequest> request) { - LogManager.Log("File upload request received " + request.Message.FileName); + LogManager.Log("File upload request received " + request.Message.Path); - Notify("Upload request " + request.Message.FileName); + Notify("Upload request " + request.Message.Path); var tempFolder = TemporaryManager.CreateFolder(); LogManager.Log("Created temporary upload folder " + tempFolder.Path); @@ -126,7 +126,7 @@ namespace Tango.RemoteRunner.UI { Folder = tempFolder, UploadID = uploadID, - FileName = request.Message.FileName, + FileName = request.Message.Path, Length = request.Message.Length, }); |
