Skip to content

Commit

Permalink
Fix error in previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
drewnoakes committed Sep 21, 2018
1 parent d354fa7 commit 4dd8009
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -924,7 +924,7 @@ internal void CreateProfile(string name, string commandName)

internal bool IsNewProfileNameValid(string name)
{
return LaunchProfiles.Any(
return !LaunchProfiles.Any(
profile => LaunchProfile.IsSameProfileName(profile.Name, name));
}

Expand Down

0 comments on commit 4dd8009

Please sign in to comment.