From aab488ecaea0fdec1b7fb0892c604ce37306c84d Mon Sep 17 00:00:00 2001 From: Vadim Lopatin Date: Tue, 12 Sep 2017 13:58:43 +0300 Subject: [PATCH] fix corruption of workspace name - #267 --- src/dlangide/workspace/workspace.d | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dlangide/workspace/workspace.d b/src/dlangide/workspace/workspace.d index 1b7c83b..0654dac 100644 --- a/src/dlangide/workspace/workspace.d +++ b/src/dlangide/workspace/workspace.d @@ -270,9 +270,9 @@ class Workspace : WorkspaceItem { if (df) _description ~= p.description ~ " / "; } - if (!_name.empty) // cut off last comma + if (nf && !_name.empty) // cut off last comma _name = _name[ 0 .. $ - 1 ]; - if (!_description.empty) // cut off last delimiter + if (df && !_description.empty) // cut off last delimiter _description = _description[ 0 .. $ - 3 ]; } _workspaceFile.setString("name", toUTF8(_name));