Switch from .to_string() to .to_owned()

This commit is contained in:
Neshura 2023-12-29 14:34:33 +01:00
parent 3ecd434580
commit 654bc5c7f8
Signed by: Neshura
GPG key ID: B6983AAA6B9A7A6C
6 changed files with 13 additions and 13 deletions
src/config

View file

@ -32,7 +32,7 @@ impl Config {
impl Default for Config {
fn default() -> Self {
Config {
instance: "".to_string(),
instance: "".to_owned(),
status_post_url: None,
config_reload_seconds: 21600,
protected_communities: vec![],