Fix tier limits print when --mock-user is enabled

This commit is contained in:
sydhds
2025-06-13 18:08:50 +02:00
parent 834fa090d2
commit 8e9e6c4b9d

View File

@@ -88,8 +88,9 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
)
} else {
// mock
debug!("Mock - will use tier limits: {:#?}", TIER_LIMITS);
TierLimits::from(TIER_LIMITS.clone())
let tl = TierLimits::from(TIER_LIMITS.clone());
debug!("Mock - will use tier limits: {:#?}", tl);
tl
};
tier_limits.filter_inactive();