Make clear that create_group_record is also used by create_mailinglist_record

This commit is contained in:
Hocuri
2020-04-13 15:36:33 +02:00
parent 51e1826958
commit 4e174d0c2f

View File

@@ -1281,6 +1281,7 @@ fn create_or_lookup_adhoc_group(
Ok((new_chat_id, create_blocked))
}
// Insert a group record into the database. Note that this function is also used by create_mailinglist_record() below.
fn create_group_record(
context: &Context,
grpid: impl AsRef<str>,
@@ -1308,7 +1309,7 @@ fn create_group_record(
{
warn!(
context,
"Failed to create group '{}' for grpid={}",
"Failed to create group or mailinglist '{}' for grpid={}",
grpname.as_ref(),
grpid.as_ref()
);
@@ -1318,7 +1319,7 @@ fn create_group_record(
let chat_id = ChatId::new(row_id);
info!(
context,
"Created group '{}' grpid={} as {}",
"Created group or mailinglist '{}' grpid={} as {}",
grpname.as_ref(),
grpid.as_ref(),
chat_id
@@ -1339,13 +1340,6 @@ fn create_mailinglist_record(
create_blocked,
VerifiedStatus::Unverified,
);
info!(
context,
"Created mailinglist '{}' listid={} as {}",
name.as_ref(),
listid.as_ref(),
chat_id
);
let mut chat = Chat::load_from_db(context, chat_id)?;
chat.param.set(Param::MailingList, "true");