We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4904a67 commit 1c6e941Copy full SHA for 1c6e941
apps/labrinth/src/database/models/notifications_template_item.rs
@@ -56,7 +56,10 @@ impl NotificationTemplate {
56
let mut redis = redis.connect().await?;
57
58
let maybe_cached_templates = redis
59
- .get_deserialized_from_json(TEMPLATES_NAMESPACE, channel.as_str())
+ .get_deserialized_from_json(
60
+ TEMPLATES_NAMESPACE,
61
+ channel.as_str(),
62
+ )
63
.await?;
64
65
if let Some(cached) = maybe_cached_templates {
0 commit comments