add collisions notice

This commit is contained in:
postscriptum 2025-07-03 20:02:02 +03:00
parent db09d3ba04
commit 927858ae2f
2 changed files with 2 additions and 0 deletions

View file

@ -51,6 +51,7 @@ snac2nex -s /path/to/snac/storage -t /path/to/nex -u user1 -u user2
Post filenames format Post filenames format
* escaped with `%%` * escaped with `%%`
* be careful when removing seconds, as it may cause overwrite collisions
[default: %H:%M:%S] [default: %H:%M:%S]

View file

@ -36,6 +36,7 @@ pub struct Config {
/// Post filenames format /// Post filenames format
/// ///
/// * escaped with `%%` /// * escaped with `%%`
/// * be careful when removing seconds, as it may cause overwrite collisions
#[arg(long, default_value_t = String::from("%H:%M:%S"))] #[arg(long, default_value_t = String::from("%H:%M:%S"))]
pub format_filename: String, pub format_filename: String,