Skip to content

Commit

Permalink
Fix fetching notification settings from db
Browse files Browse the repository at this point in the history
This fixes #8760.
  • Loading branch information
aviraxp authored Feb 4, 2025
1 parent c913f7e commit 1bd6604
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion native/src/core/su/db.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ impl SqlTable for RootSettings {
self.policy.repr = val;
} else if column == "logging" {
self.log = val != 0;
} else if column == "notify" {
} else if column == "notification" {
self.notify = val != 0;
}
}
Expand Down

0 comments on commit 1bd6604

Please sign in to comment.