Skip to content

Commit

Permalink
fix: clean up quality:tm: code
Browse files Browse the repository at this point in the history
  • Loading branch information
raikasdev committed Mar 12, 2024
1 parent 401d22b commit 0190fe0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/database/activity.rs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ impl super::DatabaseWrapper {
let mut activities = query.load::<CodingActivity>(&mut conn).await?;

// Change hidden entries project name
if is_self == false {
if !is_self {
for act in &mut activities {
if act.hidden {
// Empty string instead of None() to make sure we don't make everything into "undefined" :D
Expand Down

0 comments on commit 0190fe0

Please sign in to comment.