From 23311358604cef8b5cfc953c20d7dd669d2daae5 Mon Sep 17 00:00:00 2001 From: Cyberboss Date: Thu, 21 Sep 2017 12:19:47 -0400 Subject: [PATCH] Use / instead of @ --- TGServerService/Config.cs | 2 +- TGServiceInterface/Config.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/TGServerService/Config.cs b/TGServerService/Config.cs index 52553c70e2..55e34fd90e 100644 --- a/TGServerService/Config.cs +++ b/TGServerService/Config.cs @@ -130,7 +130,7 @@ namespace TGServerService foreach (var I in dirToEnum.GetFiles()) result.Add(I.Name); foreach (var I in dirToEnum.GetDirectories()) - result.Add("@" + I.Name); + result.Add('/' + I.Name); error = null; return result; } diff --git a/TGServiceInterface/Config.cs b/TGServiceInterface/Config.cs index c0a58ecde3..6af5f6c675 100644 --- a/TGServiceInterface/Config.cs +++ b/TGServiceInterface/Config.cs @@ -20,7 +20,7 @@ namespace TGServiceInterface /// /// Returns the file contents of the specified server directory - /// Subdirectories will be prefixed with '@' + /// Subdirectories will be prefixed with '/' /// /// Subdirectory to enumerate, enumerates the root directory if null /// null on success, error message on failure