From 2471dff87e3e8aa414341f78bd655bc9121c35aa Mon Sep 17 00:00:00 2001 From: Simon Gardling Date: Wed, 30 Mar 2022 10:52:14 -0400 Subject: [PATCH] borrow here --- src/egui_app.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/egui_app.rs b/src/egui_app.rs index b3408d8..92ae62c 100644 --- a/src/egui_app.rs +++ b/src/egui_app.rs @@ -350,9 +350,9 @@ impl MathApp { "Integration name: {} Url: {:?}", cc.integration_info.name, if let Some(url) = &cc.integration_info.web_info { - url.location.url.clone() + &url.location.url } else { - "N/A".to_owned() + "N/A" } );