Make it so that channels can have more than one piece of channel metadata with the same value.

This commit is contained in:
B.Greenham 2010-03-04 17:49:15 -05:00
parent 05f8f9e493
commit cc39ce707d
1 changed files with 0 additions and 3 deletions

View File

@ -1914,9 +1914,6 @@ channel_metadata_add(struct Channel *target, const char *name, const char *value
{ {
struct Metadata *md; struct Metadata *md;
if(irc_dictionary_find(target->c_metadata, name) != NULL)
return NULL;
md = rb_malloc(sizeof(struct Metadata)); md = rb_malloc(sizeof(struct Metadata));
md->name = rb_strdup(name); md->name = rb_strdup(name);
md->value = rb_strdup(value); md->value = rb_strdup(value);