Bug fix: unique argument was never checked.
Now it's once again possible to pass multiple copies of linker flags! I don't know why you'd want to do that.
This commit is contained in:
@@ -434,7 +434,7 @@ abstract ConfigData(Dynamic) to Dynamic from Dynamic
|
||||
Reflect.setField(current, field + ARRAY, array);
|
||||
}
|
||||
|
||||
if (array.indexOf(value) == -1)
|
||||
if (!unique || array.indexOf(value) == -1)
|
||||
{
|
||||
array.push(value);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user