Compare commits

..

No commits in common. "2e65f3744bb745cff0c329e7fbbdbae7d66054ec" and "495aee464d1570f00069bc8ea44b708b2f96e438" have entirely different histories.

3 changed files with 5 additions and 8 deletions

2
Cargo.lock generated
View File

@ -228,7 +228,7 @@ checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1"
[[package]]
name = "breeze"
version = "0.2.6"
version = "0.2.5"
dependencies = [
"anyhow",
"argh",

View File

@ -1,6 +1,6 @@
[package]
name = "breeze"
version = "0.2.6"
version = "0.2.5"
edition = "2021"
[dependencies]

View File

@ -148,13 +148,10 @@ impl Engine {
#[async_recursion::async_recursion]
pub async fn gen_saved_name(&self, ext: &str) -> String {
// generate a 6-character alphanumeric string
let mut saved_name: String = Alphanumeric.sample_string(&mut rand::thread_rng(), 6);
let id: String = Alphanumeric.sample_string(&mut rand::thread_rng(), 6);
// if we have an extension, add it now
if !ext.is_empty() {
saved_name.push('.');
saved_name.push_str(ext);
}
// path on disk
let saved_name = format!("{}.{}", id, ext);
if !self.has(&saved_name).await {
saved_name