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