1
0
mirror of https://github.com/Artemis-RGB/Artemis synced 2025-12-13 05:48:35 +00:00

Fixes duplicate category bypass exception

This commit is contained in:
Cheerpipe 2021-06-08 09:51:11 -04:00
parent bab566a2b9
commit ccbb57f88b

View File

@ -50,7 +50,7 @@ namespace Artemis.UI.Screens.Sidebar.Dialogs
private bool BeUniqueCategory(SidebarCategoryCreateViewModel viewModel, string categoryName)
{
return _profileCategoryRepository.IsUnique(categoryName, null) == null;
return _profileCategoryRepository.IsUnique(categoryName.Trim(), null) == null;
}
}
}