Skip to content
Snippets Groups Projects
Commit 8da02875 authored by Robert Goldmann's avatar Robert Goldmann
Browse files

#96 - fixed bug that causes tags to be added multiple times

parent 643e3918
No related branches found
No related tags found
1 merge request!213merge v1_6_0 into master
......@@ -618,7 +618,7 @@ public class NewPaymentController extends BaseController implements Styleable
//check for new tags
for(Tag paymentTag : tags)
{
if(!tagListContainsTag(previousTags, payment.getName()))
if(!tagListContainsTag(previousTags, paymentTag.getName()))
{
String name = paymentTag.getName();
Tag existingTag = serverTagConnection.getTag(name);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment