Skip to content

Commit

Permalink
Fix oma topics item style
Browse files Browse the repository at this point in the history
  • Loading branch information
eatradish committed Feb 13, 2025
1 parent 3cf538b commit 970c264
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions oma-history/src/migrations.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,11 @@ fn migration_from_oma_db_v2(conn: &Connection) -> HistoryResult<()> {
OldSummaryType::TopicsChanged { add, remove } => {
let mut s = "oma topics".to_string();
if !add.is_empty() {
s.push_str("--opt-in ");
s.push_str(" --opt-in ");
s.push_str(&add.join(" "));
}
if !remove.is_empty() {
s.push_str("--opt-out ");
s.push_str(" --opt-out ");
s.push_str(&remove.join(" "));
}
s
Expand Down

0 comments on commit 970c264

Please sign in to comment.