Fixed favorites being able to be added multiple times.

This commit is contained in:
Me4502 2017-04-08 22:28:32 +10:00 committed by jacob1
parent 804b33f389
commit bda17dd62e

View File

@ -25,7 +25,10 @@ bool Favorite::AnyFavorites()
void Favorite::AddFavorite(std::string identifier)
{
favoritesList.push_back(identifier);
if (!IsFavorite(identifier))
{
favoritesList.push_back(identifier);
}
}
void Favorite::RemoveFavorite(std::string identifier)