From d13f7fe9698bbb05faa628422a370bce100d9c11 Mon Sep 17 00:00:00 2001 From: asonix Date: Tue, 27 Feb 2024 20:18:35 -0600 Subject: [PATCH] Include a few random bytes in the directory structure --- src/file_path.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/file_path.rs b/src/file_path.rs index 2be6611..6c6dec6 100644 --- a/src/file_path.rs +++ b/src/file_path.rs @@ -14,5 +14,5 @@ pub(crate) fn generate_object() -> String { fn generate() -> Vec { let s = Uuid::now_v7().simple().to_string(); - (0..6).map(|i| s[i * 2..i * 2 + 2].to_string()).collect() + (0..10).map(|i| s[i * 2..i * 2 + 2].to_string()).collect() }