We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da3583a commit 305ad25Copy full SHA for 305ad25
src/analytics.rs
@@ -94,9 +94,8 @@ pub struct Report {
94
95
impl Report {
96
pub async fn new() -> anyhow::Result<Self> {
97
- let mut upt: f64 = 0.0;
98
let uptime = uptime_lib::get().unwrap();
99
- upt = uptime.as_secs_f64();
+ let upt = uptime.as_secs_f64();
100
101
refresh_sys_info();
102
let mut os_version = "Unknown".to_string();
0 commit comments