Skip to content

Commit 33ead94

Browse files
committed
Fix path generation.
Thankfully, it was used only internally, as a dictionary key.
1 parent 2bbced2 commit 33ead94

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Models/PipeModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ namespace PipeExplorer.Models
3030
public AclModel Acl { get; }
3131
public uint ActiveConnections { get; }
3232

33-
public string Path => $@"\\{Host}\{Name}";
33+
public string Path => $@"\\{Host}\pipe\{Name}";
3434

3535
public PipeModel(string host, string name, int maxConn, uint activeConn, AclModel acl)
3636
{

0 commit comments

Comments
 (0)