mirror of https://github.com/LemmyNet/lemmy.git
Redundant to_owned
parent
fcf1c65fc1
commit
7ba6ee8714
|
@ -160,7 +160,7 @@ impl User_ {
|
|||
let my_claims = Claims {
|
||||
id: self.id,
|
||||
username: self.name.to_owned(),
|
||||
iss: Settings::get().hostname.to_owned(),
|
||||
iss: Settings::get().hostname,
|
||||
show_nsfw: self.show_nsfw,
|
||||
theme: self.theme.to_owned(),
|
||||
default_sort_type: self.default_sort_type,
|
||||
|
|
|
@ -77,7 +77,7 @@ async fn main() -> Result<(), Error> {
|
|||
))
|
||||
.service(actix_files::Files::new(
|
||||
"/docs",
|
||||
settings.front_end_dir.to_owned() + "/documentation",
|
||||
settings.front_end_dir + "/documentation",
|
||||
))
|
||||
})
|
||||
.bind((settings.bind, settings.port))?
|
||||
|
|
Loading…
Reference in New Issue