mirror of
https://github.com/chatmail/core.git
synced 2026-04-20 23:16:30 +03:00
use enum for show_emails
This commit is contained in:
committed by
holger krekel
parent
9506f8c38e
commit
84c6113271
@@ -5,6 +5,7 @@ use std::time::Duration;
|
||||
use rusqlite::{Connection, OpenFlags, Statement, NO_PARAMS};
|
||||
use thread_local_object::ThreadLocal;
|
||||
|
||||
use crate::constants::ShowEmails;
|
||||
use crate::context::Context;
|
||||
use crate::dc_tools::*;
|
||||
use crate::error::{Error, Result};
|
||||
@@ -736,7 +737,7 @@ fn open(
|
||||
if dbversion < 50 {
|
||||
info!(context, "[migration] v50");
|
||||
if exists_before_update {
|
||||
sql.set_raw_config_int(context, "show_emails", 2)?;
|
||||
sql.set_raw_config_int(context, "show_emails", ShowEmails::All as i32)?;
|
||||
}
|
||||
dbversion = 50;
|
||||
sql.set_raw_config_int(context, "dbversion", 50)?;
|
||||
|
||||
Reference in New Issue
Block a user