Fix the dashmap + user_management_routes build

This commit is contained in:
Emii Tatsuo 2020-12-01 17:38:26 -05:00
parent 3e2865de12
commit de060363f1
Signed by: Emi
GPG Key ID: 68FAB2E2E6DFC98B
1 changed files with 1 additions and 1 deletions

View File

@ -180,7 +180,7 @@ const NSI: &str = include_str!("pages/nopass/nsi.gmi");
// TODO periodically clean these
#[cfg(feature = "dashmap")]
lazy_static::lazy_static! {
static ref PENDING_REDIRECTS: DashMap<u32, String> = Default::default();
static ref PENDING_REDIRECTS: DashMap<[u8; 32], String> = Default::default();
}
#[cfg(not(feature = "dashmap"))]